| 1 | <?php |
||
| 20 | final class AnyType extends AbstractTypeDefinition |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | public const TYPE_NAME = 'Any'; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string |
||
| 29 | */ |
||
| 30 | public const TYPE_DESCRIPTION = 'Abstract type, representing any data type'; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * AnyScalar constructor. |
||
| 34 | * @param Document $document |
||
| 35 | */ |
||
| 36 | 9 | public function __construct(Document $document) |
|
| 42 | |||
| 43 | /** |
||
| 44 | * @return TypeInterface |
||
| 45 | */ |
||
| 46 | 8 | public static function getType(): TypeInterface |
|
| 50 | |||
| 51 | /** |
||
| 52 | * @return bool |
||
| 53 | */ |
||
| 54 | public function isRenderable(): bool |
||
| 58 | |||
| 59 | /** |
||
| 60 | * @return bool |
||
| 61 | */ |
||
| 62 | public function isInputable(): bool |
||
| 66 | |||
| 67 | /** |
||
| 68 | * @return bool |
||
| 69 | */ |
||
| 70 | public function isBuiltin(): bool |
||
| 74 | } |
||
| 75 |