Total Complexity | 2 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
10 | class iTunesController extends Controller |
||
11 | { |
||
12 | private $iTunesService; |
||
13 | |||
14 | public function __construct(iTunesService $iTunesService) |
||
15 | { |
||
16 | $this->iTunesService = $iTunesService; |
||
17 | } |
||
18 | |||
19 | /** |
||
20 | * View a song on iTunes store. |
||
21 | * |
||
22 | * @return RedirectResponse |
||
23 | */ |
||
24 | public function viewSong(ViewSongOnITunesRequest $request, Album $album) |
||
30 | } |
||
31 | } |
||
32 |