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