Cron\Report\JobReport::setSuccessful PHP 메소드

setSuccessful() 공개 메소드

public setSuccessful ( boolean $state )
$state boolean
    public function setSuccessful($state)
    {
        $this->successful = $state;
    }

Usage Example

예제 #1
0
 /**
  * Register the end state.
  */
 protected function registerSuccessful()
 {
     $this->report->setSuccessful($this->getProcess()->isSuccessful());
 }