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/Forum/Controller.php
2016-08-05 04:35:37 +02:00

19 lines
352 B
PHP

<?php
/**
* Holds the base controller for forums.
* @package Sakura
*/
namespace Sakura\Controllers\Forum;
use Sakura\Controllers\Controller as BaseController;
/**
* Base forum controller (which other controllers should extend on).
* @package Sakura
* @author Julian van de Groep <me@flash.moe>
*/
class Controller extends BaseController
{
}