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.
Completed
Pull Request — master (#12)
by
unknown
04:56
created
src/HumanApi/Endpoint/TestResults.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
      */
15 15
     protected $type = "medical/test_results";
16 16
     
17
-    function readCollection(){
17
+    function readCollection() {
18 18
         
19 19
     }
20 20
 }
Please login to merge, or discard this patch.
src/HumanApi/Endpoint/Medications.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
      */
16 16
     protected $type = "medical/medications";
17 17
     
18
-    function readCollection(){
18
+    function readCollection() {
19 19
         
20 20
     }
21 21
 }
Please login to merge, or discard this patch.
src/HumanApi/Application.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
     {
73 73
 
74 74
         if (!in_array($endpoint, $this->supportedBatchEndpoints)) {
75
-            throw new UnsupportedBatchEndpointException("Batch endpoint '" . $endpoint . "' is not supported");
75
+            throw new UnsupportedBatchEndpointException("Batch endpoint '".$endpoint."' is not supported");
76 76
         }
77 77
 
78 78
         $response = $this->get(
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
             )
87 87
         );
88 88
 
89
-        return $this->buildCollection(json_decode($response->getBody(),true));
89
+        return $this->buildCollection(json_decode($response->getBody(), true));
90 90
 
91 91
     }
92 92
 
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
             )
109 109
         );
110 110
 
111
-        return $this->buildCollection(json_decode($response->getBody(),true));
111
+        return $this->buildCollection(json_decode($response->getBody(), true));
112 112
 
113 113
     }
114 114
 
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
             )
132 132
         );
133 133
 
134
-        return new Model(json_decode($response->getBody(),true), $this);
134
+        return new Model(json_decode($response->getBody(), true), $this);
135 135
 
136 136
     }
137 137
 
Please login to merge, or discard this patch.
src/HumanApi/Endpoint.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@
 block discarded – undo
118 118
             )
119 119
         );
120 120
 
121
-        $json = json_decode($response->getBody(),true);
121
+        $json = json_decode($response->getBody(), true);
122 122
         if (!$this->listReturnsArray) {
123 123
             $json = array($json);
124 124
         }
Please login to merge, or discard this patch.
src/HumanApi/Auth.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,6 +56,6 @@
 block discarded – undo
56 56
                 "json" => $this->sessionTokenData,
57 57
             )
58 58
         );
59
-        return json_decode($response->getBody(),true); //json decode applied
59
+        return json_decode($response->getBody(), true); //json decode applied
60 60
     }
61 61
 }
Please login to merge, or discard this patch.