1 | <?php |
||
12 | class DummyTask implements ITask |
||
13 | { |
||
14 | /** |
||
15 | * @var int|null |
||
16 | */ |
||
17 | private $result; |
||
18 | |||
19 | /** |
||
20 | * @param int|null $result |
||
21 | */ |
||
22 | 3 | public function __construct($result) |
|
26 | |||
27 | /** |
||
28 | * @param InputInterface $input |
||
29 | * @param OutputInterface $output |
||
30 | * @return int|null |
||
31 | */ |
||
32 | public function execute(InputInterface $input, OutputInterface $output) |
||
36 | } |
||
37 |