Pony.fm/app/controllers/Api/Web/AuthController.php

11 lines
167 B
PHP
Raw Normal View History

2013-07-25 23:33:04 +02:00
<?php
namespace Api\Web;
use Commands\RegisterUserCommand;
class AuthController extends \Controller {
public function postLogout() {
\Auth::logout();
}
}