1 | <?php |
||
19 | class DirectiveLocation extends AbstractDependentTypeDefinition implements DirectiveLocationInterface |
||
20 | { |
||
21 | /** |
||
22 | * @return TypeInterface |
||
23 | */ |
||
24 | public static function getType(): TypeInterface |
||
28 | |||
29 | /** |
||
30 | * @return bool |
||
31 | */ |
||
32 | public function isExecutable(): bool |
||
36 | |||
37 | /** |
||
38 | * @return bool |
||
39 | */ |
||
40 | public function isPrivate(): bool |
||
44 | |||
45 | /** |
||
46 | * @param TypeInterface $type |
||
47 | * @return bool |
||
48 | */ |
||
49 | public function isAllowedFor(TypeInterface $type): bool |
||
55 | |||
56 | /** |
||
57 | * @return bool |
||
58 | */ |
||
59 | public function isBuiltin(): bool |
||
63 | } |
||
64 |