Completed
Pull Request — dev (#26)
by nonanerz
03:27
created
src/AppBundle/Entity/User.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -409,7 +409,7 @@  discard block
 block discarded – undo
409 409
     }
410 410
 
411 411
     /**
412
- * @see \Serializable::serialize()
412
+     * @see \Serializable::serialize()
413 413
 */
414 414
     public function serialize()
415 415
     {
@@ -425,7 +425,7 @@  discard block
 block discarded – undo
425 425
     }
426 426
 
427 427
     /**
428
- * @see \Serializable::unserialize()
428
+     * @see \Serializable::unserialize()
429 429
 */
430 430
     public function unserialize($serialized)
431 431
     {
Please login to merge, or discard this patch.
src/AppBundle/Controller/Api/DefaultController.php 1 patch
Indentation   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@  discard block
 block discarded – undo
12 12
 class DefaultController extends Controller
13 13
 {
14 14
     /**
15
-
16 15
      * @param Request $request
17 16
      * @Route("/login", name="api_login")
18 17
      * @Method("POST")
@@ -23,7 +22,7 @@  discard block
 block discarded – undo
23 22
     {
24 23
         $data = json_decode($request->getContent(), true);
25 24
         /**
26
- * @var User $user 
25
+         * @var User $user 
27 26
 */
28 27
         $user = $this->getDoctrine()->getRepository('AppBundle:User')
29 28
             ->findOneBy(['email' => $data['email']]);
Please login to merge, or discard this patch.