Neos\Flow\Mvc\ActionRequest::isDispatched PHP Метод

isDispatched() публичный Метод

The dispatcher will try to dispatch the request again if it has not been addressed yet.
public isDispatched ( ) : boolean
Результат boolean TRUE if this request has been dispatched successfully
    public function isDispatched()
    {
        return $this->dispatched;
    }

Usage Example

 /**
  * @test
  */
 public function cloneResetsTheStatusToNotDispatched()
 {
     $this->actionRequest->setDispatched(true);
     $cloneRequest = clone $this->actionRequest;
     $this->assertTrue($this->actionRequest->isDispatched());
     $this->assertFalse($cloneRequest->isDispatched());
 }
All Usage Examples Of Neos\Flow\Mvc\ActionRequest::isDispatched