Pony.fm/app/controllers/Api/Web/AuthController.php
2013-08-31 21:59:12 -05:00

11 lines
No EOL
167 B
PHP

<?php
namespace Api\Web;
use Commands\RegisterUserCommand;
class AuthController extends \Controller {
public function postLogout() {
\Auth::logout();
}
}