This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/app/Controllers/StatusController.php
2016-08-05 04:35:37 +02:00

25 lines
406 B
PHP

<?php
/**
* Holds the status controller.
* @package Sakura
*/
namespace Sakura\Controllers;
/**
* The status page and related stuff.
* @package Sakura
* @author Julian van de Groep <me@flash.moe>
*/
class StatusController extends Controller
{
/**
* Renders the base status page.
* @return string
*/
public function index()
{
return view('status/index');
}
}