<?php
Autoloader::add_core_namespace('Guard');
Autoloader::add_classes(array(
'Guard\\Guard' => __DIR__.'classes/guard.php',
));
?>
<?php
namespace Guard;
class Guard {
public static function _init()
{
}
public static function check()
{
return true;
}
}
?>
It looks like you're new here. If you want to get involved, click one of these buttons!