| 1 | <?php |
||
| 20 | abstract class BaseInterface extends BaseTypeDefinition implements InterfaceDefinition |
||
| 21 | { |
||
| 22 | use BaseFieldsContainer; |
||
| 23 | use BaseDirectivesContainer; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Base type name |
||
| 27 | */ |
||
| 28 | protected const TYPE_NAME = Type::INTERFACE; |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return array |
||
| 32 | */ |
||
| 33 | public function __sleep(): array |
||
| 43 | } |
||
| 44 |