callback) and isset(static::$route->callback['name']) and static::$route->callback['name'] === $name); } /** * Magic Method to handle dynamic static methods. */ public static function __callStatic($method, $parameters) { // Dynamically determine if a given route is handling the request. if (strpos($method, 'route_is_') === 0) { return static::route_is(substr($method, 9)); } } }