mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-23 13:37:59 +01:00
11 lines
167 B
PHP
11 lines
167 B
PHP
|
<?php
|
||
|
|
||
|
namespace Api\Web;
|
||
|
|
||
|
use Commands\RegisterUserCommand;
|
||
|
|
||
|
class AuthController extends \Controller {
|
||
|
public function postLogout() {
|
||
|
\Auth::logout();
|
||
|
}
|
||
|
}
|