Neos\Flow\Mvc\ActionRequest::isDispatched PHP Method

isDispatched() public method

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

Usage Example

コード例 #1
0
 /**
  * @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