1 | <?php |
||
23 | class ArgumentInvocation extends AbstractDependentTypeInvocation implements ArgumentInvocationInterface |
||
24 | { |
||
25 | /** |
||
26 | * @var mixed |
||
27 | */ |
||
28 | protected $value; |
||
29 | |||
30 | /** |
||
31 | * ArgumentInvocation constructor. |
||
32 | * @param TypeInvocation $parent |
||
33 | * @param Document $document |
||
34 | * @param string $name |
||
35 | * @param mixed $value |
||
36 | */ |
||
37 | public function __construct(TypeInvocation $parent, Document $document, string $name, $value) |
||
43 | |||
44 | /** |
||
45 | * @return Type |
||
46 | */ |
||
47 | public static function getType(): Type |
||
51 | |||
52 | /** |
||
53 | * @return mixed |
||
54 | */ |
||
55 | public function getValue() |
||
59 | |||
60 | /** |
||
61 | * @return TypeDefinition |
||
62 | */ |
||
63 | public function getDefinition(): TypeDefinition |
||
72 | } |
||
73 |