Example #1
0
 public function nextPath()
 {
     if ($this->getRequest()->hasParameter('skip') || $this->getRequest()->isMutation()) {
         $successor = $this->getParent()->getSuccessor($this);
         return $successor ? $successor->getIdentifier() : 'Review';
     }
     return parent::nextPath();
 }