/**
  * After step hook
  *
  * @param Step $step step
  *
  * @return void
  */
 public function _afterStep(Step $step)
 {
     parent::_afterStep($step);
     $this->module->_afterStep($step);
 }
Esempio n. 2
0
 public function _afterStep(Step $step)
 {
     $this->debug(__CLASS__ . '::_afterStep ' . $step->getHumanizedActionWithoutArguments());
     // if there was an interruption; fail the step
     $this->failOnInterruption();
     parent::_afterStep($step);
 }