You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
254 B

3 years ago
  1. <?php
  2. namespace App\Models;
  3. /**
  4. * Store for Users
  5. *
  6. *
  7. * @author Björn Hase
  8. * @link https://gitea.tentakelfabrik.de/mITSM/feedback GitHub Repository
  9. *
  10. */
  11. class User extends ModelAbstract
  12. {
  13. // name of store
  14. protected $name = 'users';
  15. }