1 | <?php |
||
14 | class UnlockCommand extends ContainerAwareCommand |
||
15 | { |
||
16 | /** |
||
17 | * @var LockHandlerInterface |
||
18 | */ |
||
19 | private $lockHandler; |
||
20 | |||
21 | /** |
||
22 | * @param LockHandlerInterface $lockHandler |
||
23 | * @param null|string $name |
||
24 | */ |
||
25 | public function __construct( |
||
32 | |||
33 | /** |
||
34 | * {@inheritDoc} |
||
35 | */ |
||
36 | protected function configure() |
||
49 | |||
50 | /** |
||
51 | * @param InputInterface $input |
||
52 | * @param OutputInterface $output |
||
53 | * |
||
54 | * @return int|null|void |
||
55 | */ |
||
56 | protected function execute(InputInterface $input, OutputInterface $output) |
||
66 | } |
||
67 |