GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Push — master ( 22d4de...422c09 )
by sebastian
01:30
created
src/Facade/Requests/CalendarCreateRequest.php 2 patches
Spacing   +3 added lines, -5 removed lines patch added patch discarded remove patch
@@ -59,17 +59,15 @@
 block discarded – undo
59 59
                     'attributes'  => ['name' => 'VEVENT']
60 60
                 ]
61 61
             ],
62
-            '{urn:ietf:params:xml:ns:caldav}calendar-timezone' => new Cdata
63
-            (
64
-                ICalTimeZoneBuilder::build
65
-                (
62
+            '{urn:ietf:params:xml:ns:caldav}calendar-timezone' => new Cdata(
63
+                ICalTimeZoneBuilder::build(
66 64
                     $this->vo->getTimezone(),
67 65
                     $this->vo->getDisplayName()
68 66
                 )->render()
69 67
             )
70 68
         ];
71 69
 
72
-        if(!empty($this->vo->getDescription()))
70
+        if (!empty($this->vo->getDescription()))
73 71
             $props['{urn:ietf:params:xml:ns:caldav}calendar-description'] = $this->vo->getDescription();
74 72
 
75 73
         return $service->write('{urn:ietf:params:xml:ns:caldav}mkcalendar',
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -69,8 +69,9 @@
 block discarded – undo
69 69
             )
70 70
         ];
71 71
 
72
-        if(!empty($this->vo->getDescription()))
73
-            $props['{urn:ietf:params:xml:ns:caldav}calendar-description'] = $this->vo->getDescription();
72
+        if(!empty($this->vo->getDescription())) {
73
+                    $props['{urn:ietf:params:xml:ns:caldav}calendar-description'] = $this->vo->getDescription();
74
+        }
74 75
 
75 76
         return $service->write('{urn:ietf:params:xml:ns:caldav}mkcalendar',
76 77
             [
Please login to merge, or discard this patch.
src/Facade/Utils/ICalTimeZoneBuilder.php 2 patches
Spacing   +26 added lines, -31 removed lines patch added patch discarded remove patch
@@ -31,11 +31,11 @@  discard block
 block discarded – undo
31 31
      * @param DateTimeZone $time_zone
32 32
      * @return array
33 33
      */
34
-    private static function calculateTimeRangeForTransitions(DateTimeZone $time_zone){
34
+    private static function calculateTimeRangeForTransitions(DateTimeZone $time_zone) {
35 35
 
36 36
         $now           = new  DateTime('now', $time_zone);
37 37
         $year          = $now->format('Y');
38
-        return [new DateTime('1/1/'.$year, $time_zone),  new DateTime('1/1/'.($year + 1), $time_zone)];
38
+        return [new DateTime('1/1/'.$year, $time_zone), new DateTime('1/1/'.($year + 1), $time_zone)];
39 39
     }
40 40
 
41 41
     /**
@@ -43,11 +43,11 @@  discard block
 block discarded – undo
43 43
      * @param int $former_offset
44 44
      * @return DateTime
45 45
      */
46
-    private static function convertStartDateFromUTC2Local(array $trans, $former_offset){
46
+    private static function convertStartDateFromUTC2Local(array $trans, $former_offset) {
47 47
         $dt     = new DateTime($trans['time'], new DateTimeZone('UTC'));
48 48
         $hours  = abs($former_offset);
49 49
         // START TIME IS ON UTC and should be converted to local using former offset
50
-        if($former_offset >= 0 )
50
+        if ($former_offset >= 0)
51 51
             $dt->add(new DateInterval("PT{$hours}H"));
52 52
         else
53 53
             $dt->sub(new DateInterval("PT{$hours}H"));
@@ -59,12 +59,11 @@  discard block
 block discarded – undo
59 59
      * @param DateTime $dt
60 60
      * @return RecurrenceRule
61 61
      */
62
-    private static function calculateRecurrenceRule(DateTime $dt){
63
-        $r_rule        = new RecurrenceRule();
62
+    private static function calculateRecurrenceRule(DateTime $dt) {
63
+        $r_rule = new RecurrenceRule();
64 64
         $r_rule->setFreq(RecurrenceRule::FREQ_YEARLY);
65 65
         $r_rule->setByMonth(intval($dt->format('m')));
66
-        $r_rule->setByDay
67
-        (
66
+        $r_rule->setByDay(
68 67
             self::translate2ByDay($dt)
69 68
         );
70 69
         return $r_rule;
@@ -74,7 +73,7 @@  discard block
 block discarded – undo
74 73
      * @param $offset
75 74
      * @return string
76 75
      */
77
-    private static function calculateOffsetFrom($offset){
76
+    private static function calculateOffsetFrom($offset) {
78 77
         return sprintf('%s%02d%02d', $offset >= 0 ? '+' : '-', abs($offset), abs(($offset - floor($offset)) * 60));
79 78
     }
80 79
 
@@ -82,7 +81,7 @@  discard block
 block discarded – undo
82 81
      * @param  $offset
83 82
      * @return string
84 83
      */
85
-    private static function calculateOffsetTo($offset){
84
+    private static function calculateOffsetTo($offset) {
86 85
         return sprintf('%s%02d%02d', $offset >= 0 ? '+' : '-', abs($offset), abs(($offset - floor($offset)) * 60));
87 86
     }
88 87
     /**
@@ -91,7 +90,7 @@  discard block
 block discarded – undo
91 90
      * @param bool $with_calendar_envelope
92 91
      * @return Calendar|Timezone
93 92
      */
94
-    public static function build(DateTimeZone $time_zone, $calendar_prod_id, $with_calendar_envelope = true){
93
+    public static function build(DateTimeZone $time_zone, $calendar_prod_id, $with_calendar_envelope = true) {
95 94
 
96 95
         // get all transitions for one current year and next
97 96
         list($start_range, $end_range) = self::calculateTimeRangeForTransitions($time_zone);
@@ -111,11 +110,11 @@  discard block
 block discarded – undo
111 110
 
112 111
             // daylight saving time definition
113 112
             if ($trans['isdst']) {
114
-                $current_time_zone_rule = new TimezoneRule(TimezoneRule::TYPE_DAYLIGHT);;
113
+                $current_time_zone_rule = new TimezoneRule(TimezoneRule::TYPE_DAYLIGHT); ;
115 114
             }
116 115
             // standard time definition
117 116
             else {
118
-                $current_time_zone_rule = new TimezoneRule(TimezoneRule::TYPE_STANDARD);;
117
+                $current_time_zone_rule = new TimezoneRule(TimezoneRule::TYPE_STANDARD); ;
119 118
             }
120 119
 
121 120
             if ($current_time_zone_rule) {
@@ -136,7 +135,7 @@  discard block
 block discarded – undo
136 135
             }
137 136
 
138 137
         }
139
-        if($with_calendar_envelope) {
138
+        if ($with_calendar_envelope) {
140 139
             $vCalendar = new Calendar(sprintf("'-//%s//EN'", $calendar_prod_id));
141 140
             $vCalendar->setTimezone($vTimezone);
142 141
             return $vCalendar;
@@ -156,25 +155,25 @@  discard block
 block discarded – undo
156 155
      * @param DateTime $dt)
157 156
      * @return string
158 157
      */
159
-    private static function translate2ByDay(DateTime $dt){
160
-        $day_name = substr(strtoupper($dt->format('D')), 0,2);
158
+    private static function translate2ByDay(DateTime $dt) {
159
+        $day_name = substr(strtoupper($dt->format('D')), 0, 2);
161 160
         $ordinals = ['first', 'second', 'third', 'fourth', 'last'];
162 161
         $day_nbr  = 0;
163 162
         $is_last  = false;
164 163
 
165
-        foreach($ordinals as $idx => $ord){
164
+        foreach ($ordinals as $idx => $ord) {
166 165
             $dt_n = self::buildOrdinalDateTime($ord, $dt);
167
-            if($dt_n->format('Y-m-d') == $dt->format('Y-m-d')){
168
-                $day_nbr = $idx  + 1;
169
-                if($ord == 'last'){
166
+            if ($dt_n->format('Y-m-d') == $dt->format('Y-m-d')) {
167
+                $day_nbr = $idx + 1;
168
+                if ($ord == 'last') {
170 169
                     $is_last = true;
171
-                    $day_nbr  = 1;
170
+                    $day_nbr = 1;
172 171
                 }
173 172
                 break;
174 173
             }
175 174
         }
176 175
 
177
-        return sprintf('%s%s%s', $is_last? '-':'', $day_nbr, $day_name);
176
+        return sprintf('%s%s%s', $is_last ? '-' : '', $day_nbr, $day_name);
178 177
     }
179 178
 
180 179
     /**
@@ -182,15 +181,11 @@  discard block
 block discarded – undo
182 181
      * @param DateTime $dt
183 182
      * @return DateTime
184 183
      */
185
-    private static function buildOrdinalDateTime($ord, DateTime $dt){
186
-        return new DateTime
187
-        (
188
-            date
189
-            ("Y-m-d",
190
-                strtotime
191
-                (
192
-                    sprintf
193
-                    (
184
+    private static function buildOrdinalDateTime($ord, DateTime $dt) {
185
+        return new DateTime(
186
+            date("Y-m-d",
187
+                strtotime(
188
+                    sprintf(
194 189
                         self::GetOrdinalDayQuery,
195 190
                         $ord,
196 191
                         $dt->format('l'),
Please login to merge, or discard this patch.
Braces   +5 added lines, -4 removed lines patch added patch discarded remove patch
@@ -47,10 +47,11 @@
 block discarded – undo
47 47
         $dt     = new DateTime($trans['time'], new DateTimeZone('UTC'));
48 48
         $hours  = abs($former_offset);
49 49
         // START TIME IS ON UTC and should be converted to local using former offset
50
-        if($former_offset >= 0 )
51
-            $dt->add(new DateInterval("PT{$hours}H"));
52
-        else
53
-            $dt->sub(new DateInterval("PT{$hours}H"));
50
+        if($former_offset >= 0 ) {
51
+                    $dt->add(new DateInterval("PT{$hours}H"));
52
+        } else {
53
+                    $dt->sub(new DateInterval("PT{$hours}H"));
54
+        }
54 55
 
55 56
         return $dt;
56 57
     }
Please login to merge, or discard this patch.
src/Facade/Responses/GenericMultiCalDAVResponse.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -25,9 +25,9 @@  discard block
 block discarded – undo
25 25
 
26 26
     protected function parse()
27 27
     {
28
-        if(isset($this->content['response'])){
28
+        if (isset($this->content['response'])) {
29 29
 
30
-            if(isset($this->content['response']['propstat'])) {
30
+            if (isset($this->content['response']['propstat'])) {
31 31
                 // its a collection with one single element
32 32
                 $single_resource = $this->buildSingleResponse();
33 33
                 $single_resource->setContent(['response' => $this->content['response']]);
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
     /**
49 49
      * @return GenericSinglePROPFINDCalDAVResponse[]
50 50
      */
51
-    public function getResponses(){
51
+    public function getResponses() {
52 52
         return $this->responses;
53 53
     }
54 54
 
Please login to merge, or discard this patch.
src/Facade/Responses/VCardEntityResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     /**
22 22
      * @return string
23 23
      */
24
-    public function getVCard(){
24
+    public function getVCard() {
25 25
         return isset($this->found_props['calendar-data']) ? $this->found_props['calendar-data'] : null;
26 26
     }
27 27
 }
28 28
\ No newline at end of file
Please login to merge, or discard this patch.
src/Facade/Responses/CalendarDeletedResponse.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     /**
22 22
      * @return bool
23 23
      */
24
-    public function isSuccessFull(){
24
+    public function isSuccessFull() {
25 25
         return $this->code == HttpResponse::HttpCodeNoContent;
26 26
     }
27 27
 }
28 28
\ No newline at end of file
Please login to merge, or discard this patch.
src/Facade/Utils/RequestFactory.php 2 patches
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -50,25 +50,25 @@  discard block
 block discarded – undo
50 50
                 ];
51 51
             case HttpMethods::Put:
52 52
                $etag = $params[0];
53
-               if(empty($etag)){
54
-                   return [
55
-                       Headers::ContentType  => ContentTypes::Calendar,
56
-                       Headers::IfNotMatch   => '*',
57
-                   ];
58
-               }
59
-               return [
60
-                   Headers::ContentType  => ContentTypes::Calendar,
61
-                   Headers::IfMatch      => $etag
62
-               ];
53
+                if(empty($etag)){
54
+                    return [
55
+                        Headers::ContentType  => ContentTypes::Calendar,
56
+                        Headers::IfNotMatch   => '*',
57
+                    ];
58
+                }
59
+                return [
60
+                    Headers::ContentType  => ContentTypes::Calendar,
61
+                    Headers::IfMatch      => $etag
62
+                ];
63 63
         }
64 64
         return [];
65 65
     }
66 66
     /**
67
-    * @param string $url
68
-    * @param string $body
69
-    * @param int $depth
70
-    * @return Request
71
-    */
67
+     * @param string $url
68
+     * @param string $body
69
+     * @param int $depth
70
+     * @return Request
71
+     */
72 72
     public static function createPropFindRequest($url , $body, $depth = 1){
73 73
         return new Request
74 74
         (
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
      * @param string $etag
158 158
      * @return Request
159 159
      */
160
-     public static function createPutRequest($url, $body, $etag = null){
160
+        public static function createPutRequest($url, $body, $etag = null){
161 161
         return new Request
162 162
         (
163 163
             HttpMethods::Put,
Please login to merge, or discard this patch.
Spacing   +19 added lines, -26 removed lines patch added patch discarded remove patch
@@ -26,8 +26,8 @@  discard block
 block discarded – undo
26 26
      * @param array $params
27 27
      * @return array
28 28
      */
29
-    private static function createHeadersFor($http_method, array $params = []){
30
-        switch ($http_method){
29
+    private static function createHeadersFor($http_method, array $params = []) {
30
+        switch ($http_method) {
31 31
             case HttpMethods::PropFind:
32 32
             case HttpMethods::Options:
33 33
             case HttpMethods::Report:
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
                 ];
39 39
             case HttpMethods::Delete:
40 40
                 $etag = $params[0];
41
-                if(!empty($etag)) {
41
+                if (!empty($etag)) {
42 42
                     return [
43 43
                         Headers::IfMatch => $etag,
44 44
                     ];
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
                 ];
51 51
             case HttpMethods::Put:
52 52
                $etag = $params[0];
53
-               if(empty($etag)){
53
+               if (empty($etag)) {
54 54
                    return [
55 55
                        Headers::ContentType  => ContentTypes::Calendar,
56 56
                        Headers::IfNotMatch   => '*',
@@ -69,11 +69,10 @@  discard block
 block discarded – undo
69 69
     * @param int $depth
70 70
     * @return Request
71 71
     */
72
-    public static function createPropFindRequest($url , $body, $depth = 1){
73
-        return new Request
74
-        (
72
+    public static function createPropFindRequest($url, $body, $depth = 1) {
73
+        return new Request(
75 74
             HttpMethods::PropFind,
76
-            $url ,
75
+            $url,
77 76
             self::createHeadersFor(HttpMethods::PropFind, [$depth]),
78 77
             $body
79 78
         );
@@ -84,9 +83,8 @@  discard block
 block discarded – undo
84 83
      * @param string $body
85 84
      * @return Request
86 85
      */
87
-    public static function createMakeCalendarRequest($url , $body){
88
-        return new Request
89
-        (
86
+    public static function createMakeCalendarRequest($url, $body) {
87
+        return new Request(
90 88
             HttpMethods::MakeCalendar,
91 89
             $url,
92 90
             self::createHeadersFor(HttpMethods::MakeCalendar),
@@ -99,9 +97,8 @@  discard block
 block discarded – undo
99 97
      * @param int $depth
100 98
      * @return Request
101 99
      */
102
-    public static function createOptionsRequest($url, $depth = 1){
103
-        return new Request
104
-        (
100
+    public static function createOptionsRequest($url, $depth = 1) {
101
+        return new Request(
105 102
             HttpMethods::Options,
106 103
             $url,
107 104
             self::createHeadersFor(HttpMethods::Options, [$depth])
@@ -114,9 +111,8 @@  discard block
 block discarded – undo
114 111
      * @param int $depth
115 112
      * @return Request
116 113
      */
117
-    public static function createReportRequest($url , $body, $depth = 1){
118
-        return new Request
119
-        (
114
+    public static function createReportRequest($url, $body, $depth = 1) {
115
+        return new Request(
120 116
             HttpMethods::Report,
121 117
             $url,
122 118
             self::createHeadersFor(HttpMethods::Report, [$depth]),
@@ -129,9 +125,8 @@  discard block
 block discarded – undo
129 125
      * @param string $etag
130 126
      * @return Request
131 127
      */
132
-    public static function createDeleteRequest($url , $etag){
133
-        return new Request
134
-        (
128
+    public static function createDeleteRequest($url, $etag) {
129
+        return new Request(
135 130
             HttpMethods::Delete,
136 131
             $url,
137 132
             self::createHeadersFor(HttpMethods::Delete, [$etag])
@@ -142,9 +137,8 @@  discard block
 block discarded – undo
142 137
      * @param string $url
143 138
      * @return Request
144 139
      */
145
-    public static function createGetRequest($url){
146
-        return new Request
147
-        (
140
+    public static function createGetRequest($url) {
141
+        return new Request(
148 142
             HttpMethods::Get,
149 143
             $url,
150 144
             self::createHeadersFor(HttpMethods::Get)
@@ -157,9 +151,8 @@  discard block
 block discarded – undo
157 151
      * @param string $etag
158 152
      * @return Request
159 153
      */
160
-     public static function createPutRequest($url, $body, $etag = null){
161
-        return new Request
162
-        (
154
+     public static function createPutRequest($url, $body, $etag = null) {
155
+        return new Request(
163 156
             HttpMethods::Put,
164 157
             $url,
165 158
             self::createHeadersFor(HttpMethods::Put, [$etag]),
Please login to merge, or discard this patch.
src/Facade/Requests/MakeCalendarRequestVO.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
         $this->timezone      = $timezone;
61 61
         $this->uid           = md5(uniqid(mt_rand(), true));
62 62
 
63
-        if(is_null($this->timezone)){
63
+        if (is_null($this->timezone)) {
64 64
             $this->timezone = new DateTimeZone('UTC');
65 65
         }
66 66
     }
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
     /**
69 69
      * @param string $uid
70 70
      */
71
-    public function setUID($uid){
71
+    public function setUID($uid) {
72 72
         $this->uid = $uid;
73 73
     }
74 74
 
Please login to merge, or discard this patch.