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/libraries/Controllers/Settings/FriendsController.php

28 lines
439 B
PHP
Raw Normal View History

<?php
/**
* Holds the friends section controller.
*
* @package Sakura
*/
namespace Sakura\Controllers\Settings;
/**
* Friends settings.
*
* @package Sakura
* @author Julian van de Groep <me@flash.moe>
*/
class FriendsController extends Controller
{
public function listing()
{
return $this->go('friends.listing');
}
public function requests()
{
return $this->go('friends.requests');
}
}