1 | <?php |
||
23 | final class PsyshCommand extends Command |
||
24 | { |
||
25 | /** |
||
26 | * @var Shell |
||
27 | */ |
||
28 | private $shell; |
||
29 | |||
30 | /** |
||
31 | * @param Shell $shell |
||
32 | */ |
||
33 | 12 | public function __construct(Shell $shell) |
|
39 | |||
40 | /** |
||
41 | * {@inheritdoc} |
||
42 | */ |
||
43 | 12 | protected function configure() |
|
49 | |||
50 | /** |
||
51 | * {@inheritdoc} |
||
52 | */ |
||
53 | 3 | protected function execute(InputInterface $input, OutputInterface $output) |
|
57 | } |
||
58 |