| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class FavoritesController extends Controller |
||
| 13 | { |
||
| 14 | private $interactionRepository; |
||
| 15 | |||
| 16 | 1 | public function __construct(DownloadService $downloadService, InteractionRepository $interactionRepository) |
|
| 20 | 1 | } |
|
| 21 | |||
| 22 | /** |
||
| 23 | * Download all songs favorite'd by the current user. |
||
| 24 | * |
||
| 25 | * @response [] |
||
| 26 | */ |
||
| 27 | 1 | public function show(Request $request) |
|
| 34 |