| 1 | <?php |
||
| 17 | class VoteStart extends AbstractChatCommand |
||
| 18 | { |
||
| 19 | /** @var VoteService */ |
||
| 20 | private $voteService; |
||
| 21 | |||
| 22 | /** @var PlayerStorage */ |
||
| 23 | private $playerStorage; |
||
| 24 | |||
| 25 | /** @var string */ |
||
| 26 | protected $voteTypeCode; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * VoteStart constructor. |
||
| 30 | * |
||
| 31 | * @param $command |
||
| 32 | * @param array $aliases |
||
| 33 | * @param VoteService $voteService |
||
| 34 | * @param PlayerStorage $playerStorage |
||
| 35 | * @param $voteTypeCode |
||
| 36 | */ |
||
| 37 | public function __construct( |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @inheritdoc |
||
| 52 | */ |
||
| 53 | public function execute($login, InputInterface $input) |
||
| 58 | } |
||
| 59 |