1 | <?php |
||
20 | class DirectiveLocation extends AbstractDependentTypeDefinition implements DirectiveLocationInterface |
||
21 | { |
||
22 | /** |
||
23 | * @return bool |
||
24 | */ |
||
25 | public function isExecutable(): bool |
||
29 | |||
30 | /** |
||
31 | * @return bool |
||
32 | */ |
||
33 | public function isPrivate(): bool |
||
37 | |||
38 | /** |
||
39 | * @param TypeInterface $type |
||
40 | * @return bool |
||
41 | * @throws \Railt\Io\Exception\ExternalFileException |
||
42 | */ |
||
43 | public function isAllowedFor(TypeInterface $type): bool |
||
49 | |||
50 | /** |
||
51 | * @return TypeInterface |
||
52 | */ |
||
53 | public static function getType(): TypeInterface |
||
57 | } |
||
58 |