1 | <?php |
||
22 | class Configurator implements ConfiguratorInterface |
||
23 | { |
||
24 | use ConfiguratorTrait; |
||
25 | |||
26 | /** |
||
27 | * @param CommandInterface $command |
||
28 | * @return bool |
||
29 | */ |
||
30 | protected function doAccept(CommandInterface $command): bool |
||
34 | |||
35 | /** |
||
36 | * @param CommandInterface $command |
||
37 | */ |
||
38 | protected function doConfigure(CommandInterface $command) |
||
48 | } |
||
49 | |||
50 |