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

33 lines
524 B
PHP
Raw Normal View History

2016-07-31 01:32:37 +00:00
<?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
{
2016-08-05 02:35:37 +00:00
/**
* Redirects the user to the chat client.
*/
2016-07-31 01:32:37 +00:00
public function redirect()
{
return;
}
2016-08-05 02:35:37 +00:00
/**
* Serves the settings for a Sakurako chat.
* @return string
*/
2016-07-31 01:32:37 +00:00
public function settings()
{
return;
}
}