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