| 1 | <?php |
||
| 19 | abstract class BaseDependent extends BaseTypeDefinition implements DependentDefinition |
||
| 20 | { |
||
| 21 | /** |
||
| 22 | * @var TypeDefinition|mixed |
||
| 23 | */ |
||
| 24 | protected $parent; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return TypeDefinition |
||
| 28 | */ |
||
| 29 | 902 | public function getParent(): TypeDefinition |
|
| 33 | |||
| 34 | /** |
||
| 35 | * @return array |
||
| 36 | */ |
||
| 37 | 1163 | public function __sleep(): array |
|
| 43 | } |
||
| 44 |