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