afterRun() protected method

You may override this method to do post-processing work for the action run.
protected afterRun ( )
Example #1
0
 protected function afterRun()
 {
     if (is_callable($this->afterRun)) {
         return call_user_func($this->afterRun);
     }
     parent::afterRun();
 }
 /**
  * @inheritdoc
  */
 public function afterRun()
 {
     if (is_callable($this->afterRun)) {
         call_user_func($this->afterRun, $this);
     }
     parent::afterRun();
 }