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

33 lines
524 B
PHP

<?php
/**
* Hold the controller for chat related pages.
* @package Sakura
*/
namespace Sakura\Controllers;
/**
* Chat related controller.
* @package Sakura
* @author Julian van de Groep <me@flash.moe>
*/
class ChatController extends Controller
{
/**
* Redirects the user to the chat client.
*/
public function redirect()
{
return;
}
/**
* Serves the settings for a Sakurako chat.
* @return string
*/
public function settings()
{
return;
}
}