| 1 | <?php |
||
| 23 | abstract class AbstractCommand extends Command |
||
| 24 | { |
||
| 25 | protected CentrifugoInterface $centrifugo; |
||
|
|
|||
| 26 | |||
| 27 | /** |
||
| 28 | * @param CentrifugoInterface $centrifugo |
||
| 29 | */ |
||
| 30 | public function __construct(CentrifugoInterface $centrifugo) |
||
| 31 | { |
||
| 32 | $this->centrifugo = $centrifugo; |
||
| 33 | |||
| 34 | parent::__construct(); |
||
| 35 | } |
||
| 36 | } |
||
| 37 |