| 1 | <?php |
||
| 21 | abstract class BaseInput extends BaseTypeDefinition implements InputDefinition |
||
| 22 | { |
||
| 23 | use BaseArgumentsContainer; |
||
| 24 | use BaseDirectivesContainer; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Input type name |
||
| 28 | */ |
||
| 29 | protected const TYPE_NAME = Type::INPUT; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @param mixed $value |
||
| 33 | * @return bool |
||
| 34 | */ |
||
| 35 | 282 | public function isCompatible($value): bool |
|
| 39 | |||
| 40 | /** |
||
| 41 | * @return array |
||
| 42 | */ |
||
| 43 | 1012 | public function __sleep(): array |
|
| 53 | } |
||
| 54 |