class Greeting { public static function hello() { echo 'hello world!'; } } Flight::route('/', array('Greeting','hello')); the Greeting class it is better to be automatically loaded
class Greeting {
public static function hello() {
echo 'hello world!';
}
}
Flight::route('/', array('Greeting','hello'));
the Greeting class it is better to be automatically loaded