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