1 | <?php |
||
11 | class DoctorCommand extends Command |
||
12 | { |
||
13 | /** |
||
14 | * @var Doctor |
||
15 | */ |
||
16 | private $doctor; |
||
17 | |||
18 | /** |
||
19 | * @param Doctor $doctor |
||
20 | */ |
||
21 | public function __construct(Doctor $doctor) |
||
27 | |||
28 | /** |
||
29 | * {@inheritdoc} |
||
30 | */ |
||
31 | protected function configure() |
||
44 | |||
45 | /** |
||
46 | * {@inheritdoc} |
||
47 | */ |
||
48 | protected function execute(InputInterface $input, OutputInterface $output) |
||
52 | } |
||
53 |