class NAME
{
public static function_name($stuff)
{
self::fail();
}
public static function fail()
{
$something = 'fail';
return fail;
}
}
OK first what is the public static used for and why do they do self::fail(); instead of something like $this->fail();
dEcade
