kgaughan (owner)

Revisions

gist: 99703 Download_button fork
public
Public Clone URL: git://gist.github.com/99703.git
Embed All Files: show embed
PHP #
1
2
3
4
5
6
7
<?php
class LogoutHandler extends AFK_HandlerBase {
 
    public function on_get(AFK_Context $ctx) {
        throw new AFK_HttpException('Bye!', AFK_Context::UNAUTHORISED);
    }
}