mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2025-03-19 17:57:12 +01:00
15 lines
281 B
PHP
15 lines
281 B
PHP
|
<?php
|
||
|
|
||
|
class FavoritesController 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');
|
||
|
}
|
||
|
}
|