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 — master ( b0453d...abb288 )
by Martin
11s
created
src/Provider/Woothee.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
      */
93 93
     public function __construct()
94 94
     {
95
-        if (! file_exists('vendor/' . $this->getPackageName() . '/composer.json')) {
95
+        if (!file_exists('vendor/' . $this->getPackageName() . '/composer.json')) {
96 96
             throw new PackageNotLoadedException('You need to install the package ' . $this->getPackageName() . ' to use this provider');
97 97
         }
98 98
     }
Please login to merge, or discard this patch.
src/Provider/Http/WhatIsMyBrowserCom.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -200,7 +200,7 @@
 block discarded – undo
200 200
 
201 201
     /**
202 202
      *
203
-     * @param Model\UserAgent $device
203
+     * @param Model\Device $device
204 204
      * @param DeviceDetector  $dd
205 205
      */
206 206
     private function hydrateDevice(Model\Device $device, DeviceDetector $dd)
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
          * no json returned?
114 114
          */
115 115
         $contentType = $response->getHeader('Content-Type');
116
-        if (! isset($contentType[0]) || $contentType[0] != 'application/json') {
116
+        if (!isset($contentType[0]) || $contentType[0] != 'application/json') {
117 117
             throw new Exception\RequestException('Could not get valid "application/json" response from "' . $request->getUri() . '". Response is "' . $response->getBody()->getContents() . '"');
118 118
         }
119 119
 
@@ -144,14 +144,14 @@  discard block
 block discarded – undo
144 144
             throw new Exception\InvalidCredentialsException('Your API key "' . $this->apiKey . '" is not valid for ' . $this->getName());
145 145
         }
146 146
 
147
-        if (! isset($content->result) || $content->result !== 'success') {
147
+        if (!isset($content->result) || $content->result !== 'success') {
148 148
             throw new Exception\RequestException('Could not get valid response from "' . $request->getUri() . '". Response is "' . $response->getBody()->getContents() . '"');
149 149
         }
150 150
 
151 151
         /*
152 152
          * Missing data?
153 153
          */
154
-        if (! $content instanceof stdClass || ! isset($content->parse) || ! $content->parse instanceof stdClass) {
154
+        if (!$content instanceof stdClass || !isset($content->parse) || !$content->parse instanceof stdClass) {
155 155
             throw new Exception\RequestException('Could not get valid response from "' . $request->getUri() . '". Response is "' . print_r($content, true) . '"');
156 156
         }
157 157
 
Please login to merge, or discard this patch.
src/Provider/DonatjUAParser.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
      */
93 93
     public function __construct()
94 94
     {
95
-        if (! file_exists('vendor/' . $this->getPackageName() . '/composer.json')) {
95
+        if (!file_exists('vendor/' . $this->getPackageName() . '/composer.json')) {
96 96
             throw new PackageNotLoadedException('You need to install the package ' . $this->getPackageName() . ' to use this provider');
97 97
         }
98 98
     }
Please login to merge, or discard this patch.
src/Provider/JenssegersAgent.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,6 @@
 block discarded – undo
114 114
     /**
115 115
      *
116 116
      * @param Model\Bot $bot
117
-     * @param array     $browserRaw
118 117
      */
119 118
     private function hydrateBot(Model\Bot $bot, array $resultRaw)
120 119
     {
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
      */
93 93
     public function __construct()
94 94
     {
95
-        if (! file_exists('vendor/' . $this->getPackageName() . '/composer.json')) {
95
+        if (!file_exists('vendor/' . $this->getPackageName() . '/composer.json')) {
96 96
             throw new PackageNotLoadedException('You need to install the package ' . $this->getPackageName() . ' to use this provider');
97 97
         }
98 98
     }
Please login to merge, or discard this patch.
src/Provider/Wurfl.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
 
110 110
     public function getVersion()
111 111
     {
112
-        $version      = $this->getParser()->getWurflInfo()->version;
112
+        $version = $this->getParser()->getWurflInfo()->version;
113 113
 
114 114
         preg_match("/\d+(?:\.\d+)+/", $version, $result);
115 115
 
Please login to merge, or discard this patch.
src/Provider/Zsxsoft.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -74,7 +74,7 @@
 block discarded – undo
74 74
      */
75 75
     public function __construct(Parser $parser = null)
76 76
     {
77
-        if ($parser === null && ! file_exists('vendor/' . $this->getPackageName() . '/composer.json')) {
77
+        if ($parser === null && !file_exists('vendor/' . $this->getPackageName() . '/composer.json')) {
78 78
             throw new PackageNotLoadedException('You need to install the package ' . $this->getPackageName() . ' to use this provider');
79 79
         }
80 80
 
Please login to merge, or discard this patch.