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