@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | */ |
| 101 | 101 | public function requestPwReset(PasswordResetManager $passwordReset, Request $request) |
| 102 | 102 | { |
| 103 | - if (! $this->allow_email_pw_reset) { |
|
| 103 | + if (!$this->allow_email_pw_reset) { |
|
| 104 | 104 | throw new AccessDeniedHttpException('The password reset via email is disabled!'); |
| 105 | 105 | } |
| 106 | 106 | |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | */ |
| 145 | 145 | public function pwResetNewPw(PasswordResetManager $passwordReset, Request $request, EntityManagerInterface $em, EventDispatcherInterface $eventDispatcher, ?string $user = null, ?string $token = null) |
| 146 | 146 | { |
| 147 | - if (! $this->allow_email_pw_reset) { |
|
| 147 | + if (!$this->allow_email_pw_reset) { |
|
| 148 | 148 | throw new AccessDeniedHttpException('The password reset via email is disabled!'); |
| 149 | 149 | } |
| 150 | 150 | |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | $data = $form->getData(); |
| 190 | 190 | //Try to set the new password |
| 191 | 191 | $success = $passwordReset->setNewPassword($data['username'], $data['token'], $data['new_password']); |
| 192 | - if (! $success) { |
|
| 192 | + if (!$success) { |
|
| 193 | 193 | $this->addFlash('error', 'pw_reset.new_pw.error'); |
| 194 | 194 | } else { |
| 195 | 195 | $this->addFlash('success', 'pw_reset.new_pw.success'); |
@@ -121,7 +121,7 @@ discard block |
||
| 121 | 121 | * |
| 122 | 122 | * @return Response |
| 123 | 123 | */ |
| 124 | - public function new(Request $request, EntityManagerInterface $em, EntityImporter $importer, ?User $entity = null): Response |
|
| 124 | + public function new(Request $request, EntityManagerInterface $em, EntityImporter $importer, ?User $entity = null) : Response |
|
| 125 | 125 | { |
| 126 | 126 | return $this->_new($request, $em, $importer, $entity); |
| 127 | 127 | } |
@@ -171,7 +171,7 @@ discard block |
||
| 171 | 171 | //If no user id was passed, then we show info about the current user |
| 172 | 172 | if (null === $user) { |
| 173 | 173 | $tmp = $this->getUser(); |
| 174 | - if (! $tmp instanceof User) { |
|
| 174 | + if (!$tmp instanceof User) { |
|
| 175 | 175 | throw new InvalidArgumentException('Userinfo only works for database users!'); |
| 176 | 176 | } |
| 177 | 177 | $user = $tmp; |
@@ -97,7 +97,7 @@ |
||
| 97 | 97 | * |
| 98 | 98 | * @return Response |
| 99 | 99 | */ |
| 100 | - public function new(Request $request, EntityManagerInterface $em, EntityImporter $importer, ?Currency $entity = null): Response |
|
| 100 | + public function new(Request $request, EntityManagerInterface $em, EntityImporter $importer, ?Currency $entity = null) : Response |
|
| 101 | 101 | { |
| 102 | 102 | return $this->_new($request, $em, $importer, $entity); |
| 103 | 103 | } |
@@ -95,7 +95,7 @@ |
||
| 95 | 95 | * |
| 96 | 96 | * @return Response |
| 97 | 97 | */ |
| 98 | - public function new(Request $request, EntityManagerInterface $em, EntityImporter $importer, ?Category $entity = null): Response |
|
| 98 | + public function new(Request $request, EntityManagerInterface $em, EntityImporter $importer, ?Category $entity = null) : Response |
|
| 99 | 99 | { |
| 100 | 100 | return $this->_new($request, $em, $importer, $entity); |
| 101 | 101 | } |
@@ -95,7 +95,7 @@ |
||
| 95 | 95 | * |
| 96 | 96 | * @return Response |
| 97 | 97 | */ |
| 98 | - public function new(Request $request, EntityManagerInterface $em, EntityImporter $importer, ?MeasurementUnit $entity = null): Response |
|
| 98 | + public function new(Request $request, EntityManagerInterface $em, EntityImporter $importer, ?MeasurementUnit $entity = null) : Response |
|
| 99 | 99 | { |
| 100 | 100 | return $this->_new($request, $em, $importer, $entity); |
| 101 | 101 | } |
@@ -93,7 +93,7 @@ |
||
| 93 | 93 | * |
| 94 | 94 | * @return Response |
| 95 | 95 | */ |
| 96 | - public function new(Request $request, EntityManagerInterface $em, EntityImporter $importer, ?Storelocation $entity = null): Response |
|
| 96 | + public function new(Request $request, EntityManagerInterface $em, EntityImporter $importer, ?Storelocation $entity = null) : Response |
|
| 97 | 97 | { |
| 98 | 98 | return $this->_new($request, $em, $importer, $entity); |
| 99 | 99 | } |
@@ -95,7 +95,7 @@ |
||
| 95 | 95 | * |
| 96 | 96 | * @return Response |
| 97 | 97 | */ |
| 98 | - public function new(Request $request, EntityManagerInterface $em, EntityImporter $importer, ?Footprint $entity = null): Response |
|
| 98 | + public function new(Request $request, EntityManagerInterface $em, EntityImporter $importer, ?Footprint $entity = null) : Response |
|
| 99 | 99 | { |
| 100 | 100 | return $this->_new($request, $em, $importer, $entity); |
| 101 | 101 | } |
@@ -95,7 +95,7 @@ |
||
| 95 | 95 | * |
| 96 | 96 | * @return Response |
| 97 | 97 | */ |
| 98 | - public function new(Request $request, EntityManagerInterface $em, EntityImporter $importer, ?Device $entity = null): Response |
|
| 98 | + public function new(Request $request, EntityManagerInterface $em, EntityImporter $importer, ?Device $entity = null) : Response |
|
| 99 | 99 | { |
| 100 | 100 | return $this->_new($request, $em, $importer, $entity); |
| 101 | 101 | } |
@@ -95,7 +95,7 @@ |
||
| 95 | 95 | * |
| 96 | 96 | * @return Response |
| 97 | 97 | */ |
| 98 | - public function new(Request $request, EntityManagerInterface $em, EntityImporter $importer, ?AttachmentType $entity = null): Response |
|
| 98 | + public function new(Request $request, EntityManagerInterface $em, EntityImporter $importer, ?AttachmentType $entity = null) : Response |
|
| 99 | 99 | { |
| 100 | 100 | return $this->_new($request, $em, $importer, $entity); |
| 101 | 101 | } |