1 | <?php |
||
20 | 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 | 6 | public static function getType(): TypeInterface |
|
50 | } |
||
51 |