Completed
Pull Request — dev (#25)
by nonanerz
03:34
created
src/AppBundle/Controller/Api/DefaultController.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 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")
Please login to merge, or discard this patch.
src/AppBundle/Entity/Event.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
     }
63 63
 
64 64
     /**
65
-     * @param $users
65
+     * @param User $users
66 66
      *
67 67
      * @return $this
68 68
      */
Please login to merge, or discard this patch.
src/AppBundle/Form/UserType.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 
13 13
 /**
14 14
  * Class UserType.
15
-
16 15
  */
17 16
 class UserType extends AbstractType
18 17
 {
Please login to merge, or discard this patch.
src/AppBundle/Services/GoogleCalendarManager.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -50,9 +50,9 @@
 block discarded – undo
50 50
     public function getEventList($calendarId = 'primary')
51 51
     {
52 52
         return $this->calendar
53
-           ->events
54
-           ->listEvents($calendarId)
55
-           ->getItems();
53
+            ->events
54
+            ->listEvents($calendarId)
55
+            ->getItems();
56 56
     }
57 57
 
58 58
     public function getEventById($id)
Please login to merge, or discard this patch.