mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 21:18:00 +01:00
13 lines
No EOL
196 B
PHP
13 lines
No EOL
196 B
PHP
<?php
|
|
|
|
namespace Poniverse\Ponyfm\Http\Controllers;
|
|
|
|
use View;
|
|
|
|
class UploaderController extends Controller
|
|
{
|
|
public function getIndex()
|
|
{
|
|
return View::make('shared.null');
|
|
}
|
|
} |