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 (#44)
by Gadoma
05:21
created
src/Message.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -124,10 +124,10 @@
 block discarded – undo
124 124
   }
125 125
 
126 126
    /**
127
-   * Get the message endpoint
128
-   *
129
-   * @return string
130
-   */
127
+    * Get the message endpoint
128
+    *
129
+    * @return string
130
+    */
131 131
   public function getEndpoint()
132 132
   {
133 133
     return $this->endpoint;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@
 block discarded – undo
142 142
    */
143 143
   public function setEndpoint($endpoint)
144 144
   {
145
-    if(empty($endpoint) || !is_string($endpoint)) {
145
+    if (empty($endpoint) || ! is_string($endpoint)) {
146 146
           throw new InvalidArgumentException('The message endpoint must be a non-empty string');
147 147
     }
148 148
     
Please login to merge, or discard this patch.