mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 21:18:00 +01:00
15 lines
No EOL
282 B
PHP
15 lines
No EOL
282 B
PHP
<?php
|
|
|
|
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');
|
|
}
|
|
} |