Neos\Flow\Http\RequestHandler::canHandleRequest PHP Méthode

canHandleRequest() public méthode

This request handler can handle any web request.
public canHandleRequest ( ) : boolean
Résultat boolean If the request is a web request, TRUE otherwise FALSE
    public function canHandleRequest()
    {
        return PHP_SAPI !== 'cli';
    }