| 1 | <?php |
||
| 13 | class PermissionData |
||
| 14 | { |
||
| 15 | /** @var string */ |
||
| 16 | private $type; |
||
| 17 | /** @var string */ |
||
| 18 | private $class; |
||
| 19 | /** @var bool */ |
||
| 20 | private $isNullable; |
||
| 21 | |||
| 22 | 16 | public function __construct(string $roleValue, string $class, bool $isNullable) |
|
| 28 | |||
| 29 | 16 | public function getType(): string |
|
| 33 | |||
| 34 | 15 | public function getClass(): string |
|
| 38 | |||
| 39 | 4 | public function isNullable(): bool |
|
| 43 | } |
||
| 44 |