1 | <?php |
||
18 | class SearchArtistCommand extends BaseCommand |
||
19 | { |
||
20 | const COMMAND_NAME = 'search:artist'; |
||
21 | |||
22 | const COMMAND_DESCRIPTION = 'Search an artist on one or more services'; |
||
23 | |||
24 | /** |
||
25 | * @var MusicInfo; |
||
26 | */ |
||
27 | protected $musicInfo; |
||
28 | |||
29 | protected function configure() |
||
37 | |||
38 | /** |
||
39 | * @param InputInterface $input |
||
40 | * @param OutputInterface $output |
||
41 | */ |
||
42 | protected function execute(InputInterface $input, OutputInterface $output) |
||
59 | |||
60 | /** |
||
61 | * Set Music info property |
||
62 | * |
||
63 | * @param MusicInfo $musicInfo |
||
64 | */ |
||
65 | public function setMusicInfo(MusicInfo $musicInfo) |
||
69 | } |