| 1 | <?php |
||
| 11 | abstract class DriverAbstract |
||
| 12 | { |
||
| 13 | use LoopAwareTrait; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @internal |
||
| 17 | * @param string $func |
||
| 18 | * @param array $args |
||
| 19 | * @return PromiseInterface |
||
| 20 | */ |
||
| 21 | abstract public function call($func, $args = []); |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return FlagResolverInterface |
||
| 25 | */ |
||
| 26 | protected function createFlagPermissionResolver() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @return FlagResolverInterface |
||
| 33 | */ |
||
| 34 | protected function createFlagOpenResolver() |
||
| 38 | } |
||
| 39 |