1 | <?php |
||
22 | class InputInvocation extends AbstractTypeInvocation implements InputInvocationInterface |
||
23 | { |
||
24 | use HasArguments; |
||
25 | |||
26 | /** |
||
27 | * InputInvocation constructor. |
||
28 | * @param Document|DocumentInterface $document |
||
29 | * @param string|null $name |
||
30 | */ |
||
31 | public function __construct(Document $document, string $name = null) |
||
36 | |||
37 | /** |
||
38 | * @return string |
||
39 | */ |
||
40 | public function getName(): string |
||
44 | |||
45 | /** |
||
46 | * @return TypeInterface |
||
47 | */ |
||
48 | public static function getType(): TypeInterface |
||
52 | } |
||
53 |