for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/******************************************************************************
* Wikipedia Account Creation Assistance tool *
* *
* All code in this file is released into the public domain by the ACC *
* Development Team. Please see team.json for a list of contributors. *
******************************************************************************/
namespace Waca\Pages\UserAuth;
use Waca\Session;
use Waca\Tasks\InternalPageBase;
class PageLogout extends InternalPageBase
{
/**
* Main function for this page, when no specific actions are called.
*/
protected function main()
Session::destroy();
$this->redirect("login");
}
protected function isProtectedPage()
return false;