yii\base\Action::afterRun PHP Метод

afterRun() защищенный Метод

You may override this method to do post-processing work for the action run.
protected afterRun ( )
    protected function afterRun()
    {
    }

Usage Example

Пример #1
0
 protected function afterRun()
 {
     if (is_callable($this->afterRun)) {
         return call_user_func($this->afterRun);
     }
     parent::afterRun();
 }
All Usage Examples Of yii\base\Action::afterRun