@@ -6,7 +6,6 @@ |
||
| 6 | 6 | use getID3; |
| 7 | 7 | use getid3_lib; |
| 8 | 8 | use Illuminate\Support\Facades\Log; |
| 9 | -use Media; |
|
| 10 | 9 | use SplFileInfo; |
| 11 | 10 | use Symfony\Component\Finder\Finder; |
| 12 | 11 | |
@@ -4,7 +4,6 @@ |
||
| 4 | 4 | |
| 5 | 5 | use Exception; |
| 6 | 6 | use GuzzleHttp\Client; |
| 7 | -use Illuminate\Support\Facades\Cache; |
|
| 8 | 7 | use Log; |
| 9 | 8 | |
| 10 | 9 | class Lastfm extends RESTfulService |
@@ -48,8 +48,8 @@ |
||
| 48 | 48 | protected function mapWebRoutes() |
| 49 | 49 | { |
| 50 | 50 | Route::middleware('web') |
| 51 | - ->namespace($this->namespace) |
|
| 52 | - ->group(base_path('routes/web.php')); |
|
| 51 | + ->namespace($this->namespace) |
|
| 52 | + ->group(base_path('routes/web.php')); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | /** |
@@ -3,7 +3,6 @@ |
||
| 3 | 3 | namespace App\Services; |
| 4 | 4 | |
| 5 | 5 | use App\Models\Song; |
| 6 | -use Cache; |
|
| 7 | 6 | use GuzzleHttp\Client; |
| 8 | 7 | use Log; |
| 9 | 8 | |