| Total Complexity | 3 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class ImportTeam extends Command |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var TeamInterface |
||
| 16 | */ |
||
| 17 | private $team; |
||
| 18 | |||
| 19 | const COMMAND_NAME = 'api:import:team'; |
||
| 20 | const DESCRIPTION = 'Import teams from api'; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param TeamInterface $team |
||
| 24 | */ |
||
| 25 | public function __construct(TeamInterface $team) |
||
| 26 | { |
||
| 27 | $this->team = $team; |
||
| 28 | parent::__construct(); |
||
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @return void |
||
| 33 | */ |
||
| 34 | protected function configure() |
||
| 38 | } |
||
| 39 | |||
| 40 | protected function execute(InputInterface $input, OutputInterface $output) |
||
| 43 | } |
||
| 44 | } |