| 1 | <?php |
||
| 10 | final class License extends ValueObject |
||
| 11 | { |
||
| 12 | use Properties\OptionalExtensions; |
||
| 13 | use Properties\OptionalUrl; |
||
| 14 | |||
| 15 | private $name; |
||
| 16 | |||
| 17 | 3 | public function __construct( |
|
| 26 | |||
| 27 | 3 | public function getName(): string |
|
| 31 | |||
| 32 | 3 | public function jsonSerialize(): ?array |
|
| 36 | |||
| 37 | 3 | protected function normalizeOptionalProperties(): array |
|
| 43 | |||
| 44 | 3 | protected function normalizeRequiredProperties(): array |
|
| 50 | } |
||
| 51 |