mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2025-01-31 19:16:44 +01:00
15 lines
No EOL
281 B
PHP
15 lines
No EOL
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');
|
|
}
|
|
} |