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

21 lines
358 B
PHP
Raw Normal View History

2016-07-31 01:32:37 +00:00
<?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
{
}