24 lines
414 B
PHP
24 lines
414 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(): string
|
|
{
|
|
return view('status/index');
|
|
}
|
|
}
|