| 1 | <?php |
||
| 23 | class InterfaceDefinition extends AbstractTypeDefinition implements InterfaceDefinitionInterface |
||
| 24 | { |
||
| 25 | use HasInterfaces; |
||
| 26 | use HasFields; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @return TypeInterface |
||
| 30 | */ |
||
| 31 | public static function getType(): TypeInterface |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @param TypeDefinition $definition |
||
| 38 | * @return bool |
||
| 39 | */ |
||
| 40 | 2 | public function instanceOf($definition): bool |
|
| 44 | |||
| 45 | |||
| 46 | /** |
||
| 47 | * @return bool |
||
| 48 | */ |
||
| 49 | public function isRenderable(): bool |
||
| 53 | |||
| 54 | /** |
||
| 55 | * @return bool |
||
| 56 | */ |
||
| 57 | public function isInputable(): bool |
||
| 61 | } |
||
| 62 |