Completed
Push — master ( a0ab03...411288 )
by Freek
01:30
created
src/Event.php 2 patches
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,11 +2,11 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\GoogleCalendar;
4 4
 
5
-use DateTime;
6 5
 use Carbon\Carbon;
6
+use DateTime;
7 7
 use Google_Service_Calendar_Event;
8
-use Illuminate\Support\Collection;
9 8
 use Google_Service_Calendar_EventDateTime;
9
+use Illuminate\Support\Collection;
10 10
 
11 11
 class Event
12 12
 {
Please login to merge, or discard this patch.
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@  discard block
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param \Google_Service_Calendar_Event $googleEvent
30
-     * @param $calendarId
30
+     * @param null|string $calendarId
31 31
      *
32 32
      * @return static
33 33
      */
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
      * @param array $properties
46 46
      * @param string|null $calendarId
47 47
      *
48
-     * @return mixed
48
+     * @return Event
49 49
      */
50 50
     public static function create(array $properties, string $calendarId = null, $optParams = [])
51 51
     {
Please login to merge, or discard this patch.
src/GoogleCalendar.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Spatie\GoogleCalendar;
4 4
 
5
-use DateTime;
6 5
 use Carbon\Carbon;
6
+use DateTime;
7 7
 use Google_Service_Calendar;
8 8
 use Google_Service_Calendar_Event;
9 9
 
Please login to merge, or discard this patch.