Completed
Pull Request — master (#78)
by
unknown
02:17
created
Controller/LoginController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -64,6 +64,9 @@
 block discarded – undo
64 64
         );
65 65
     }
66 66
 
67
+    /**
68
+     * @param AuthenticationException $exception
69
+     */
67 70
     private function getTranslatedErrorMessageFromAuthenticationException(
68 71
         ?AuthenticationException $exception = null
69 72
     ): ?string {
Please login to merge, or discard this patch.
Controller/UserController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -108,6 +108,9 @@
 block discarded – undo
108 108
         return ['form' => $form->createView()];
109 109
     }
110 110
 
111
+    /**
112
+     * @param integer $id
113
+     */
111 114
     private function getFormForId(?int $id = null): Form
112 115
     {
113 116
         if ($id === null) {
Please login to merge, or discard this patch.
User/InMemoryBaseUserRepository.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@
 block discarded – undo
64 64
     /**
65 65
      * @param int $id
66 66
      *
67
-     * @return null|User
67
+     * @return BaseUser|null
68 68
      */
69 69
     public function find($id): ?User
70 70
     {
Please login to merge, or discard this patch.