| 1 | <?php |
||
| 21 | class AdminUser extends BaseUser implements AdminUserInterface |
||
| 22 | { |
||
| 23 | /** |
||
| 24 | * @var string |
||
| 25 | * |
||
| 26 | * @ORM\Column(type="string", nullable=true) |
||
| 27 | */ |
||
| 28 | protected $lastName; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @var string |
||
| 32 | * |
||
| 33 | * @ORM\Column(type="string", nullable=true) |
||
| 34 | */ |
||
| 35 | protected $firstName; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * AdminUser constructor. |
||
| 39 | */ |
||
| 40 | public function __construct() |
||
| 46 | |||
| 47 | /** |
||
| 48 | * {@inheritdoc} |
||
| 49 | */ |
||
| 50 | public function getLastName(): ?string |
||
| 54 | |||
| 55 | /** |
||
| 56 | * {@inheritdoc} |
||
| 57 | */ |
||
| 58 | public function setLastName(?string $lastName): void |
||
| 62 | |||
| 63 | /** |
||
| 64 | * {@inheritdoc} |
||
| 65 | */ |
||
| 66 | public function getFirstName(): ?string |
||
| 70 | |||
| 71 | /** |
||
| 72 | * {@inheritdoc} |
||
| 73 | */ |
||
| 74 | public function setFirstName(?string $firstName): void |
||
| 78 | } |
||
| 79 |