public function nextPath()
 {
     if ($this->getRequest()->hasParameter('skip') || $this->getRequest()->isMutation()) {
         $successor = $this->getParent()->getSuccessor($this);
         return $successor ? $successor->getIdentifier() : 'Review';
     }
     return parent::nextPath();
 }
 public function nextPath()
 {
     return $this->getRequest()->isMutation() ? 'Personal' : parent::nextPath();
 }
 public function bind(\Nethgui\Controller\RequestInterface $request)
 {
     $this->setUserName(\Nethgui\array_end($request->getPath()));
     parent::bind($request);
 }