1 | <?php |
||
20 | abstract class AbstractDependentTypeInvocation extends AbstractTypeInvocation implements DependentTypeInvocation |
||
21 | { |
||
22 | /** |
||
23 | * @var TypeInvocation |
||
24 | */ |
||
25 | protected $parent; |
||
26 | |||
27 | /** |
||
28 | * AbstractDependentTypeInvocation constructor. |
||
29 | * @param TypeInvocation $parent |
||
30 | * @param Document $document |
||
31 | * @param string $name |
||
32 | */ |
||
33 | public function __construct(TypeInvocation $parent, Document $document, string $name) |
||
39 | |||
40 | /** |
||
41 | * @return TypeInvocation |
||
42 | */ |
||
43 | public function getParentInvocation(): TypeInvocation |
||
47 | } |
||
48 |