Neos\Flow\Http\RequestHandler::canHandleRequest PHP Method

canHandleRequest() public method

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