Kraken\Network\Http\Component\Router\HttpRouterInterface::existsRoute PHP Méthode

existsRoute() public méthode

Check if there exists any endpoint/application to the server on given route.
public existsRoute ( string $path ) : boolean
$path string
Résultat boolean
    public function existsRoute($path);

Usage Example

 /**
  * @override
  * @inheritDoc
  */
 public function existsRoute($path)
 {
     return $this->router->existsRoute($path);
 }