1 | <?php |
||
28 | class DaemonReload extends BaseTask implements CommandInterface |
||
29 | { |
||
30 | /** |
||
31 | * Constructor. |
||
32 | * |
||
33 | * @param string $serviceManager Service manager to use. Optional. |
||
34 | * @param CommandBuilderFactoryInterface $factory CommandBuilder factory. Optional. |
||
35 | */ |
||
36 | 6 | public function __construct($serviceManager = null, CommandBuilderFactoryInterface $factory = null) |
|
40 | |||
41 | /** |
||
42 | * {@inheritdoc} |
||
43 | * @throws \InvalidArgumentException |
||
44 | */ |
||
45 | 6 | public function getCommand() |
|
59 | |||
60 | /** |
||
61 | * {@inheritdoc} |
||
62 | * @throws \InvalidArgumentException |
||
63 | */ |
||
64 | 1 | public function run() |
|
71 | } |
||
72 |