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
Push — develop ( 08b4ed...62ca4c )
by Stuart
07:20
created
src/php/Prose/UsingFacebookGraphApi.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     {
72 72
         // what are we doing?
73 73
         $log = usingLog()->startAction("get posts from facebook for page {$id} via graph api");
74
-        $returnedData = $this->makeGraphApiRequest("/".$id."/posts");
74
+        $returnedData = $this->makeGraphApiRequest("/" . $id . "/posts");
75 75
         $log->endAction("got posts for page {$id}");
76 76
 
77 77
         return $returnedData;
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
      *
87 87
      * @return array First post from a page
88 88
      */
89
-    public function getLatestPostFromPage($id){
89
+    public function getLatestPostFromPage($id) {
90 90
         $posts = $this->getPostsFromPage($id);
91 91
         return reset($posts);
92 92
     }
@@ -105,14 +105,14 @@  discard block
 block discarded – undo
105 105
         $access_token = fromConfig()->getModuleSetting('facebook.access_token');
106 106
 
107 107
         // GET $path/?access_token=$access_token
108
-        $resp = fromCurl()->get($this->base_path.$path.'?access_token='. $access_token);
108
+        $resp = fromCurl()->get($this->base_path . $path . '?access_token=' . $access_token);
109 109
 
110 110
         // Make sure it's well formed
111 111
         $log = usingLog()->startAction("make sure we have the 'data' key in the response");
112
-        if (!isset($resp->data)){
112
+        if (!isset($resp->data)) {
113 113
 
114 114
             // if it was an access token error, remove it from the runtime config
115
-            if (isset($resp->error->message) && strpos($resp->error->message, "Error validating access token") !== false){
115
+            if (isset($resp->error->message) && strpos($resp->error->message, "Error validating access token") !== false) {
116 116
                 // Remove the access token from the runtime config
117 117
                 $config = $this->st->getRuntimeConfig();
118 118
                 unset($config->facebookAccessToken);
Please login to merge, or discard this patch.
Braces   +4 added lines, -3 removed lines patch added patch discarded remove patch
@@ -86,7 +86,8 @@  discard block
 block discarded – undo
86 86
      *
87 87
      * @return array First post from a page
88 88
      */
89
-    public function getLatestPostFromPage($id){
89
+    public function getLatestPostFromPage($id)
90
+    {
90 91
         $posts = $this->getPostsFromPage($id);
91 92
         return reset($posts);
92 93
     }
@@ -109,10 +110,10 @@  discard block
 block discarded – undo
109 110
 
110 111
         // Make sure it's well formed
111 112
         $log = usingLog()->startAction("make sure we have the 'data' key in the response");
112
-        if (!isset($resp->data)){
113
+        if (!isset($resp->data)) {
113 114
 
114 115
             // if it was an access token error, remove it from the runtime config
115
-            if (isset($resp->error->message) && strpos($resp->error->message, "Error validating access token") !== false){
116
+            if (isset($resp->error->message) && strpos($resp->error->message, "Error validating access token") !== false) {
116 117
                 // Remove the access token from the runtime config
117 118
                 $config = $this->st->getRuntimeConfig();
118 119
                 unset($config->facebookAccessToken);
Please login to merge, or discard this patch.
src/php/Prose/UsingHttp.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
         }
89 89
 
90 90
         // what are we doing?
91
-        $logMsg = [ "HTTP " . strtoupper($verb) . " '${url}'" ];
91
+        $logMsg = ["HTTP " . strtoupper($verb) . " '${url}'"];
92 92
         if ($body != null) {
93 93
             $logMsg[] = $body;
94 94
         }
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
             foreach ($body as $key => $value) {
113 113
                 $request->addData($key, $value);
114 114
             }
115
-        }else{
115
+        } else {
116 116
             $request->setPayload($body);
117 117
         }
118 118
 
Please login to merge, or discard this patch.
Braces   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -112,7 +112,8 @@
 block discarded – undo
112 112
             foreach ($body as $key => $value) {
113 113
                 $request->addData($key, $value);
114 114
             }
115
-        }else{
115
+        }
116
+        else {
116 117
             $request->setPayload($body);
117 118
         }
118 119
 
Please login to merge, or discard this patch.
src/php/Prose/UsingProvisioningDefinition.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
         parent::__construct($st, $args);
68 68
 
69 69
         // $args[0] should be our provisioning block
70
-        if (!isset($args[0]) || ! $args[0] instanceof ProvisioningDefinition) {
70
+        if (!isset($args[0]) || !$args[0] instanceof ProvisioningDefinition) {
71 71
             throw new E5xx_ActionFailed(__METHOD__, "Param #0 must be a ProvisioningDefinition object");
72 72
         }
73 73
     }
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
         };
112 112
 
113 113
         // build our return object
114
-        $return = new DelayedProvisioningDefinitionAction (
114
+        $return = new DelayedProvisioningDefinitionAction(
115 115
             $this->args[0],
116 116
             $action
117 117
         );
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
         };
145 145
 
146 146
         // build our return object
147
-        $return = new DelayedProvisioningDefinitionAction (
147
+        $return = new DelayedProvisioningDefinitionAction(
148 148
             $this->args[0],
149 149
             $action
150 150
         );
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
         };
174 174
 
175 175
         // build our return object
176
-        $return = new DelayedProvisioningDefinitionAction (
176
+        $return = new DelayedProvisioningDefinitionAction(
177 177
             $this->args[0],
178 178
             $action
179 179
         );
Please login to merge, or discard this patch.
src/php/Prose/UsingRedisConn.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -77,8 +77,7 @@
 block discarded – undo
77 77
 
78 78
             return $return;
79 79
         }
80
-        catch (Exception $e)
81
-        {
80
+        catch (Exception $e) {
82 81
             throw new E5xx_ActionFailed(__METHOD__, $e->getMessage());
83 82
         }
84 83
     }
Please login to merge, or discard this patch.
src/php/Prose/UsingRuntimeTable.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -74,14 +74,14 @@  discard block
 block discarded – undo
74 74
         $tables = $this->getAllTables();
75 75
 
76 76
         // make sure it exists
77
-        if (!isset($tables->$tableName)){
77
+        if (!isset($tables->$tableName)) {
78 78
             $log->addStep("{$tableName} does not exist in the runtime config. creating empty table", function() use ($tables, $tableName){
79 79
                 $tables->$tableName = new BaseObject();
80 80
             });
81 81
         }
82 82
 
83 83
         // make sure we don't have a duplicate entry
84
-        if (isset($tables->$tableName->$key)){
84
+        if (isset($tables->$tableName->$key)) {
85 85
             $msg = "Table already contains an entry for '{$key}'";
86 86
             $log->endAction($msg);
87 87
             throw new E5xx_ActionFailed(__METHOD__, $msg);
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
         $tables = $this->getAllTables();
172 172
 
173 173
         // make sure it exists
174
-        if (!isset($tables->$tableName)){
174
+        if (!isset($tables->$tableName)) {
175 175
             $tables->$tableName = new BaseObject();
176 176
         }
177 177
         if (!isset($tables->$tableName->$group)) {
@@ -179,7 +179,7 @@  discard block
 block discarded – undo
179 179
         }
180 180
 
181 181
         // make sure we don't have a duplicate entry
182
-        if (isset($tables->$tableName->$group->$key)){
182
+        if (isset($tables->$tableName->$group->$key)) {
183 183
             $msg = "table already contains an entry for '{$group}->{$key}'";
184 184
             $log->endAction($msg);
185 185
             throw new E5xx_ActionFailed(__METHOD__, $msg);
Please login to merge, or discard this patch.
Braces   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -74,14 +74,14 @@  discard block
 block discarded – undo
74 74
         $tables = $this->getAllTables();
75 75
 
76 76
         // make sure it exists
77
-        if (!isset($tables->$tableName)){
78
-            $log->addStep("{$tableName} does not exist in the runtime config. creating empty table", function() use ($tables, $tableName){
77
+        if (!isset($tables->$tableName)) {
78
+            $log->addStep("{$tableName} does not exist in the runtime config. creating empty table", function() use ($tables, $tableName) {
79 79
                 $tables->$tableName = new BaseObject();
80 80
             });
81 81
         }
82 82
 
83 83
         // make sure we don't have a duplicate entry
84
-        if (isset($tables->$tableName->$key)){
84
+        if (isset($tables->$tableName->$key)) {
85 85
             $msg = "Table already contains an entry for '{$key}'";
86 86
             $log->endAction($msg);
87 87
             throw new E5xx_ActionFailed(__METHOD__, $msg);
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
         $tables = $this->getAllTables();
212 212
 
213 213
         // make sure it exists
214
-        if (!isset($tables->$tableName)){
214
+        if (!isset($tables->$tableName)) {
215 215
             $tables->$tableName = new BaseObject();
216 216
         }
217 217
         if (!isset($tables->$tableName->$group)) {
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
         }
220 220
 
221 221
         // make sure we don't have a duplicate entry
222
-        if (isset($tables->$tableName->$group->$key)){
222
+        if (isset($tables->$tableName->$group->$key)) {
223 223
             $msg = "table already contains an entry for '{$group}->{$key}'";
224 224
             $log->endAction($msg);
225 225
             throw new E5xx_ActionFailed(__METHOD__, $msg);
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
 
286 286
         // remove the table if it's empty
287 287
         if (!count(get_object_vars($tables->$tableName->$group))) {
288
-            $log->addStep("table group '{$tableName}->{$group}' is empty, removing from runtime config", function() use ($tables, $tableName, $group){
288
+            $log->addStep("table group '{$tableName}->{$group}' is empty, removing from runtime config", function() use ($tables, $tableName, $group) {
289 289
                 unset($tables->$tableName->$group);
290 290
             });
291 291
         }
@@ -335,7 +335,7 @@  discard block
 block discarded – undo
335 335
 
336 336
                 // remove the table if it's empty
337 337
                 if (!count(get_object_vars($tables->$tableName->$group))) {
338
-                    $log->addStep("table group '{$tableName}->{$group}' is empty, removing from runtime config", function() use ($tables, $tableName, $group){
338
+                    $log->addStep("table group '{$tableName}->{$group}' is empty, removing from runtime config", function() use ($tables, $tableName, $group) {
339 339
                         unset($tables->$tableName->$group);
340 340
                     });
341 341
                 }
Please login to merge, or discard this patch.
src/php/Prose/UsingVagrant.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
             "-o UserKnownHostsFile=/dev/null",
85 85
             "-o LogLevel=quiet",
86 86
         ];
87
-        $vmDetails->scpOptions  = [
87
+        $vmDetails->scpOptions = [
88 88
             "-i '" . $vmDetails->sshKeyFile . "'",
89 89
             "-o StrictHostKeyChecking=no",
90 90
         ];
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -115,8 +115,7 @@
 block discarded – undo
115 115
             getenv("HOME") . "/.vagrant.d/insecure_private_key"
116 116
         ];
117 117
 
118
-        foreach ($keyFilenames as $keyFilename)
119
-        {
118
+        foreach ($keyFilenames as $keyFilename) {
120 119
             usingLog()->writeToLog("checking if {$keyFilename} exists");
121 120
             if (file_exists($keyFilename)) {
122 121
                 $log->endAction($keyFilename);
Please login to merge, or discard this patch.
src/php/Prose/UsingZmq.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -60,7 +60,7 @@
 block discarded – undo
60 60
  */
61 61
 class UsingZmq extends Prose
62 62
 {
63
-    protected $socketMap = array (
63
+    protected $socketMap = array(
64 64
         ZMQ::SOCKET_PUB => "ZMQ::SOCKET_PUB",
65 65
         ZMQ::SOCKET_SUB => "ZMQ::SOCKET_SUB",
66 66
         ZMQ::SOCKET_REQ => "ZMQ::SOCKET_REQ",
Please login to merge, or discard this patch.
src/php/Prose/UsingZmqSocket.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
         // where are we unbinding from?
97 97
         $endpoints = fromZmqSocket($this->args[0])->getEndpoints();
98 98
 
99
-        foreach($endpoints['bind'] as $address) {
99
+        foreach ($endpoints['bind'] as $address) {
100 100
             usingLog()->writeToLog("unbinding from {$address}");
101 101
             $this->args[0]->unbind($address);
102 102
         }
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
         // where are we disconnecting from?
157 157
         $endpoints = fromZmqSocket($this->args[0])->getEndpoints();
158 158
 
159
-        foreach($endpoints['connect'] as $address) {
159
+        foreach ($endpoints['connect'] as $address) {
160 160
             usingLog()->writeToLog("disconnecting from {$address}");
161 161
             $this->args[0]->disconnect($address);
162 162
         }
Please login to merge, or discard this patch.
src/php/Prose/UsingZookeeper.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
     protected $host;
63 63
     protected $zk;
64 64
 
65
-    protected $default_acl = array( array(
65
+    protected $default_acl = array(array(
66 66
         "perms"  => Zookeeper::PERM_ALL,
67 67
         "scheme" => "world",
68 68
         "id"     => "anyone"
@@ -117,10 +117,10 @@  discard block
 block discarded – undo
117 117
         }
118 118
 
119 119
         // drop the last part, as that is the key itself
120
-        unset($parts[count($parts) -1]);
120
+        unset($parts[count($parts) - 1]);
121 121
 
122 122
         // start with an empty path
123
-        $path  = '';
123
+        $path = '';
124 124
 
125 125
         // work through the parts, building up the path to create from
126 126
         // the root of the directory
Please login to merge, or discard this patch.
Braces   +5 added lines, -6 removed lines patch added patch discarded remove patch
@@ -124,16 +124,14 @@  discard block
 block discarded – undo
124 124
 
125 125
         // work through the parts, building up the path to create from
126 126
         // the root of the directory
127
-        foreach ($parts as $part)
128
-        {
127
+        foreach ($parts as $part) {
129 128
             // expand our path to the next part
130 129
             $path .= '/' . $part;
131 130
 
132 131
             // does this path exist?
133 132
             if (!$this->zk->exists($path)) {
134 133
                 // no - create it
135
-                if (!$this->zk->create($path, 1, $this->default_acl))
136
-                {
134
+                if (!$this->zk->create($path, 1, $this->default_acl)) {
137 135
                     // failed to create the entry
138 136
                     throw Exceptions::newActionFailedException(__METHOD__);
139 137
                 }
@@ -151,8 +149,9 @@  discard block
 block discarded – undo
151 149
 
152 150
         // now we can safely set the key itself
153 151
         if (!$this->zk->exists($key)) {
154
-            if (!$this->zk->create($key, $value, $this->default_acl))
155
-                throw Exceptions::newActionFailedException(__METHOD__);
152
+            if (!$this->zk->create($key, $value, $this->default_acl)) {
153
+                            throw Exceptions::newActionFailedException(__METHOD__);
154
+            }
156 155
         }
157 156
         else if (!$this->zk->set($key, $value)) {
158 157
             throw Exceptions::newActionFailedException(__METHOD__);
Please login to merge, or discard this patch.