| 1 | <?php  | 
            ||
| 7 | class SecondProcess implements ProcessInterface  | 
            ||
| 8 | { | 
            ||
| 9 | /**  | 
            ||
| 10 | * @var OutputInterface  | 
            ||
| 11 | */  | 
            ||
| 12 | protected $output;  | 
            ||
| 13 | |||
| 14 | /**  | 
            ||
| 15 | * Process constructor.  | 
            ||
| 16 | * @param OutputInterface $output  | 
            ||
| 17 | */  | 
            ||
| 18 | public function __construct(OutputInterface $output)  | 
            ||
| 22 | |||
| 23 | public function exec()  | 
            ||
| 29 | |||
| 30 | public function open()  | 
            ||
| 34 | |||
| 35 | public function close()  | 
            ||
| 39 | |||
| 40 | public function terminate()  | 
            ||
| 44 | |||
| 45 | public function status()  | 
            ||
| 49 | }  | 
            ||
| 50 |