We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
newAction()
1 parent 7a4a967 commit d507118Copy full SHA for d507118
Classes/Controller/NewController.php
@@ -51,17 +51,16 @@ public function initializeCreateAction()
51
/**
52
* Render registration form
53
*
54
- * @param User|\In2code\Femanager\Domain\Model\User $user
55
* @return ResponseInterface
56
*/
57
- public function newAction(\In2code\Femanager\Domain\Model\User $user = null): ResponseInterface
+ public function newAction(): ResponseInterface
58
{
59
//get kitodo ID if set
60
$kitodoParams = GeneralUtility::_GET('tx_dlf');
61
$this->view->assign('kitodoParams', $kitodoParams);
62
63
$this->view->assign('currentUser', $this->user);
64
- return parent::newAction($user);
+ return parent::newAction();
65
}
66
67
0 commit comments