mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 13:37:59 +01:00
21 lines
No EOL
357 B
PHP
21 lines
No EOL
357 B
PHP
<?php
|
|
|
|
use App\Http\Controllers\Controller;
|
|
|
|
class FavouritesController extends Controller
|
|
{
|
|
public function getTracks()
|
|
{
|
|
return View::make('shared.null');
|
|
}
|
|
|
|
public function getAlbums()
|
|
{
|
|
return View::make('shared.null');
|
|
}
|
|
|
|
public function getPlaylists()
|
|
{
|
|
return View::make('shared.null');
|
|
}
|
|
} |