29 lines
357 B
PHP
29 lines
357 B
PHP
|
<?php
|
||
|
|
||
|
namespace api\module;
|
||
|
|
||
|
|
||
|
use \error\core\Error;
|
||
|
use \error\core\Err;
|
||
|
use \database\core\Repo;
|
||
|
use \api\core\AuthSystemDefault;
|
||
|
|
||
|
|
||
|
class dev{
|
||
|
|
||
|
public function __construct(){}
|
||
|
|
||
|
public function __destruct(){}
|
||
|
|
||
|
|
||
|
|
||
|
public function GET_session_destroy($argv){
|
||
|
extract($argv);
|
||
|
|
||
|
$_SESSION = [];
|
||
|
|
||
|
return ['notice' => 'reload the website NOW !!'];
|
||
|
}
|
||
|
|
||
|
}
|