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