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/Responses/EventCreatedResponse.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,14 +67,14 @@
 block discarded – undo
67 67
     /**
68 68
      * @return string
69 69
      */
70
-    public function getResourceUrl(){
70
+    public function getResourceUrl() {
71 71
         return $this->resource_url;
72 72
     }
73 73
 
74 74
     /**
75 75
      * @return bool
76 76
      */
77
-    public function isSuccessFull(){
77
+    public function isSuccessFull() {
78 78
         return $this->code == HttpResponse::HttpCodeCreated;
79 79
     }
80 80
 }
81 81
\ No newline at end of file
Please login to merge, or discard this patch.
src/Facade/Responses/ETagEntityResponse.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 getETag(){
24
+    public function getETag() {
25 25
         return isset($this->found_props['getetag']) ? $this->found_props['getetag'] : null;
26 26
     }
27 27
 
Please login to merge, or discard this patch.
src/Facade/Responses/UserPrincipalResponse.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@
 block discarded – undo
21 21
     /**
22 22
      * @return string
23 23
      */
24
-    public function getPrincipalUrl(){
25
-        return isset($this->found_props['current-user-principal']) &&  isset($this->found_props['current-user-principal']['href']) ?
24
+    public function getPrincipalUrl() {
25
+        return isset($this->found_props['current-user-principal']) && isset($this->found_props['current-user-principal']['href']) ?
26 26
             $this->server_url.$this->found_props['current-user-principal']['href'] : null;
27 27
     }
28 28
 }
29 29
\ No newline at end of file
Please login to merge, or discard this patch.
src/Facade/Responses/GetCalendarResponse.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     /**
22 22
      * @return string
23 23
      */
24
-    public function getDisplayName(){
24
+    public function getDisplayName() {
25 25
         return isset($this->found_props['displayname']) ? $this->found_props['displayname'] : null;
26 26
     }
27 27
 
@@ -29,14 +29,14 @@  discard block
 block discarded – undo
29 29
      * @see https://tools.ietf.org/html/rfc6578
30 30
      * @return string
31 31
      */
32
-    public function getSyncToken(){
32
+    public function getSyncToken() {
33 33
         return isset($this->found_props['sync-token']) ? $this->found_props['sync-token'] : null;
34 34
     }
35 35
 
36 36
     /**
37 37
      * @return string
38 38
      */
39
-    public function getCTag(){
39
+    public function getCTag() {
40 40
         return isset($this->found_props['getctag']) ? $this->found_props['getctag'] : null;
41 41
     }
42 42
 
Please login to merge, or discard this patch.
src/Facade/Responses/GenericSinglePROPFINDCalDAVResponse.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
      */
79 79
     protected function isValid()
80 80
     {
81
-        return parent::isValid() ;
81
+        return parent::isValid();
82 82
     }
83 83
 
84 84
     /**
Please login to merge, or discard this patch.
Braces   +15 added lines, -7 removed lines patch added patch discarded remove patch
@@ -41,8 +41,12 @@  discard block
 block discarded – undo
41 41
     protected function parse()
42 42
     {
43 43
 
44
-        if (!$this->isValid()) throw new NotValidGenericSingleCalDAVResponseException();
45
-        if (!isset($this->content['response']['propstat'])) return $this;
44
+        if (!$this->isValid()) {
45
+            throw new NotValidGenericSingleCalDAVResponseException();
46
+        }
47
+        if (!isset($this->content['response']['propstat'])) {
48
+            return $this;
49
+        }
46 50
         if (isset($this->content['response']['propstat']['prop']) && isset($this->content['response']['propstat']['status'])) {
47 51
             // all props found
48 52
             $status = $this->content['response']['propstat']['status'];
@@ -62,13 +66,17 @@  discard block
 block discarded – undo
62 66
         // multi props ( found or not found)
63 67
         foreach ($this->content['response']['propstat'] as $propstat) {
64 68
 
65
-            if (!isset($propstat['status']) || !isset($propstat['prop'])) continue;
69
+            if (!isset($propstat['status']) || !isset($propstat['prop'])) {
70
+                continue;
71
+            }
66 72
 
67
-            if ($propstat['status'] == AbstractCalDAVResponse::HttpOKStatus)
68
-                $this->found_props = $propstat['prop'];
73
+            if ($propstat['status'] == AbstractCalDAVResponse::HttpOKStatus) {
74
+                            $this->found_props = $propstat['prop'];
75
+            }
69 76
 
70
-            if ($propstat['status'] == AbstractCalDAVResponse::HttpNotFoundStatus)
71
-                $this->not_found_props = $propstat['prop'];
77
+            if ($propstat['status'] == AbstractCalDAVResponse::HttpNotFoundStatus) {
78
+                            $this->not_found_props = $propstat['prop'];
79
+            }
72 80
         }
73 81
         return $this;
74 82
     }
Please login to merge, or discard this patch.
src/Facade/Responses/CalendarHomesResponse.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
     /**
22 22
      * @return string
23 23
      */
24
-    public function getCalendarHomeSetUrl(){
24
+    public function getCalendarHomeSetUrl() {
25 25
         return isset($this->found_props['calendar-home-set']) && isset($this->found_props['calendar-home-set']['href']) ?
26 26
             $this->found_props['calendar-home-set']['href'] : null;
27 27
     }
@@ -29,8 +29,8 @@  discard block
 block discarded – undo
29 29
     /**
30 30
      * @return string|null
31 31
      */
32
-    public function getRealCalDAVHost(){
32
+    public function getRealCalDAVHost() {
33 33
         $url = $this->getCalendarHomeSetUrl();
34
-        return !empty($url) ? parse_url($url,PHP_URL_HOST) : null;
34
+        return !empty($url) ? parse_url($url, PHP_URL_HOST) : null;
35 35
     }
36 36
 }
37 37
\ No newline at end of file
Please login to merge, or discard this patch.
src/Facade/Responses/EventDeletedResponse.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/Responses/CalendarSyncInfoResponse.php 2 patches
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -22,14 +22,14 @@  discard block
 block discarded – undo
22 22
     /**
23 23
      * @return string|null
24 24
      */
25
-    public function getSyncToken(){
26
-        return isset($this->content['sync-token'])? $this->content['sync-token'] : null;
25
+    public function getSyncToken() {
26
+        return isset($this->content['sync-token']) ? $this->content['sync-token'] : null;
27 27
     }
28 28
 
29 29
     /**
30 30
      * @return bool
31 31
      */
32
-    public function hasAvailableChanges(){
32
+    public function hasAvailableChanges() {
33 33
         return count($this->responses) > 0;
34 34
     }
35 35
 
@@ -37,10 +37,10 @@  discard block
 block discarded – undo
37 37
     /**
38 38
      * @return ETagEntityResponse[]
39 39
      */
40
-    public function getUpdates(){
40
+    public function getUpdates() {
41 41
         $res = [];
42
-        foreach ($this->responses as $entity){
43
-            if($entity->getStatus() != HttpResponse::HttpOKStatus) continue;
42
+        foreach ($this->responses as $entity) {
43
+            if ($entity->getStatus() != HttpResponse::HttpOKStatus) continue;
44 44
             $res[] = $entity;
45 45
         }
46 46
         return $res;
@@ -49,10 +49,10 @@  discard block
 block discarded – undo
49 49
     /**
50 50
      * @return ETagEntityResponse[]
51 51
      */
52
-    public function getDeletes(){
52
+    public function getDeletes() {
53 53
         $res = [];
54
-        foreach ($this->responses as $entity){
55
-            if($entity->getStatus() != HttpResponse::HttpNotFoundStatus) continue;
54
+        foreach ($this->responses as $entity) {
55
+            if ($entity->getStatus() != HttpResponse::HttpNotFoundStatus) continue;
56 56
             $res[] = $entity;
57 57
         }
58 58
         return $res;
Please login to merge, or discard this patch.
Braces   +6 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,9 @@  discard block
 block discarded – undo
40 40
     public function getUpdates(){
41 41
         $res = [];
42 42
         foreach ($this->responses as $entity){
43
-            if($entity->getStatus() != HttpResponse::HttpOKStatus) continue;
43
+            if($entity->getStatus() != HttpResponse::HttpOKStatus) {
44
+                continue;
45
+            }
44 46
             $res[] = $entity;
45 47
         }
46 48
         return $res;
@@ -52,7 +54,9 @@  discard block
 block discarded – undo
52 54
     public function getDeletes(){
53 55
         $res = [];
54 56
         foreach ($this->responses as $entity){
55
-            if($entity->getStatus() != HttpResponse::HttpNotFoundStatus) continue;
57
+            if($entity->getStatus() != HttpResponse::HttpNotFoundStatus) {
58
+                continue;
59
+            }
56 60
             $res[] = $entity;
57 61
         }
58 62
         return $res;
Please login to merge, or discard this patch.
src/Facade/Responses/AbstractCalDAVResponse.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -40,13 +40,13 @@  discard block
 block discarded – undo
40 40
      * @param string|null $body
41 41
      * @param int $code
42 42
      */
43
-    public function __construct($server_url = null, $body = null, $code = HttpResponse::HttpCodeOk )
43
+    public function __construct($server_url = null, $body = null, $code = HttpResponse::HttpCodeOk)
44 44
     {
45 45
         parent::__construct($body, $code);
46 46
         $this->server_url = $server_url;
47
-        if(!empty($this->body)) {
48
-            $this->xml     =  simplexml_load_string($this->body, 'SimpleXMLElement', LIBXML_NOCDATA);
49
-            if($this->xml === FALSE)
47
+        if (!empty($this->body)) {
48
+            $this->xml     = simplexml_load_string($this->body, 'SimpleXMLElement', LIBXML_NOCDATA);
49
+            if ($this->xml === FALSE)
50 50
                 throw new XMLResponseParseException();
51 51
             $this->content = $this->toAssocArray($this->xml);
52 52
             $this->parse();
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     {
58 58
     }
59 59
 
60
-    protected function setContent($content){
60
+    protected function setContent($content) {
61 61
         $this->content = $content;
62 62
     }
63 63
 
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
     /**
76 76
      * @return bool
77 77
      */
78
-    protected function isValid(){
78
+    protected function isValid() {
79 79
         return isset($this->content['response']);
80 80
     }
81 81
 }
82 82
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,8 +46,9 @@
 block discarded – undo
46 46
         $this->server_url = $server_url;
47 47
         if(!empty($this->body)) {
48 48
             $this->xml     =  simplexml_load_string($this->body, 'SimpleXMLElement', LIBXML_NOCDATA);
49
-            if($this->xml === FALSE)
50
-                throw new XMLResponseParseException();
49
+            if($this->xml === FALSE) {
50
+                            throw new XMLResponseParseException();
51
+            }
51 52
             $this->content = $this->toAssocArray($this->xml);
52 53
             $this->parse();
53 54
         }
Please login to merge, or discard this patch.