| 1 | <?php |
||
| 7 | class FieldType |
||
| 8 | { |
||
| 9 | /** @var string */ |
||
| 10 | private $valueType; |
||
| 11 | |||
| 12 | /** @var string|null */ |
||
| 13 | private $keyType; |
||
| 14 | |||
| 15 | public function __construct(string $valueType, ?string $keyType = null) |
||
| 20 | |||
| 21 | public function getValueType(): string |
||
| 25 | |||
| 26 | public function getKeyType(): string |
||
| 30 | |||
| 31 | public function hasKeyType(): bool |
||
| 35 | } |
||
| 36 |