AbstractUser.php
2 months ago
Admin.php
1 year ago
AppleCalendarEmployeeConnect.php
1 year ago
Customer.php
7 months ago
Manager.php
1 year ago
Provider.php
2 months ago
Manager.php
20 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AmeliaBooking\Domain\Entity\User; |
| 4 | |
| 5 | /** |
| 6 | * Class Manager |
| 7 | * |
| 8 | * @package AmeliaBooking\Domain\Entity\User |
| 9 | */ |
| 10 | class Manager extends AbstractUser |
| 11 | { |
| 12 | /** |
| 13 | * Get the user type in a string form |
| 14 | */ |
| 15 | public function getType() |
| 16 | { |
| 17 | return self::USER_ROLE_MANAGER; |
| 18 | } |
| 19 | } |
| 20 |