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 ( 4161ac...74c530 )
by
unknown
07:06 queued 03:20
created
deps/vendor/composer/ClassLoader.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -449,7 +449,7 @@  discard block
 block discarded – undo
449 449
             return false;
450 450
         }
451 451
         if (null !== $this->apcuPrefix) {
452
-            $file = apcu_fetch($this->apcuPrefix.$class, $hit);
452
+            $file = apcu_fetch($this->apcuPrefix . $class, $hit);
453 453
             if ($hit) {
454 454
                 return $file;
455 455
             }
@@ -463,7 +463,7 @@  discard block
 block discarded – undo
463 463
         }
464 464
 
465 465
         if (null !== $this->apcuPrefix) {
466
-            apcu_add($this->apcuPrefix.$class, $file);
466
+            apcu_add($this->apcuPrefix . $class, $file);
467 467
         }
468 468
 
469 469
         if (false === $file) {
Please login to merge, or discard this patch.
deps/vendor/composer/InstalledVersions.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -327,11 +327,11 @@
 block discarded – undo
327 327
             foreach (ClassLoader::getRegisteredLoaders() as $vendorDir => $loader) {
328 328
                 if (isset(self::$installedByVendor[$vendorDir])) {
329 329
                     $installed[] = self::$installedByVendor[$vendorDir];
330
-                } elseif (is_file($vendorDir.'/composer/installed.php')) {
330
+                } elseif (is_file($vendorDir . '/composer/installed.php')) {
331 331
                     /** @var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $required */
332
-                    $required = require $vendorDir.'/composer/installed.php';
332
+                    $required = require $vendorDir . '/composer/installed.php';
333 333
                     $installed[] = self::$installedByVendor[$vendorDir] = $required;
334
-                    if (null === self::$installed && strtr($vendorDir.'/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
334
+                    if (null === self::$installed && strtr($vendorDir . '/composer', '\\', '/') === strtr(__DIR__, '\\', '/')) {
335 335
                         self::$installed = $installed[count($installed) - 1];
336 336
                     }
337 337
                 }
Please login to merge, or discard this patch.
deps/vendor/composer/autoload_real.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
         $loader->register(true);
35 35
 
36 36
         $filesToLoad = \Composer\Autoload\ComposerStaticInit6e0324fc886fd55694e53338d30399bc::$files;
37
-        $requireFile = \Closure::bind(static function ($fileIdentifier, $file) {
37
+        $requireFile = \Closure::bind(static function($fileIdentifier, $file) {
38 38
             if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
39 39
                 $GLOBALS['__composer_autoload_files'][$fileIdentifier] = true;
40 40
 
Please login to merge, or discard this patch.
deps/vendor/composer/platform_check.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,9 +14,9 @@
 block discarded – undo
14 14
     }
15 15
     if (!ini_get('display_errors')) {
16 16
         if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
17
-            fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL);
17
+            fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL . PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL . PHP_EOL);
18 18
         } elseif (!headers_sent()) {
19
-            echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL;
19
+            echo 'Composer detected issues in your platform:' . PHP_EOL . PHP_EOL . str_replace('You are running ' . PHP_VERSION . '.', '', implode(PHP_EOL, $issues)) . PHP_EOL . PHP_EOL;
20 20
         }
21 21
     }
22 22
     trigger_error(
Please login to merge, or discard this patch.
deps/vendor/react/socket/src/FdServer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 
96 96
         $errno = 0;
97 97
         $errstr = '';
98
-        \set_error_handler(function ($_, $error) use (&$errno, &$errstr) {
98
+        \set_error_handler(function($_, $error) use (&$errno, &$errstr) {
99 99
             // Match errstr from PHP's warning message.
100 100
             // fopen(php://fd/3): Failed to open stream: Error duping file descriptor 3; possibly it doesn't exist: [9]: Bad file descriptor
101 101
             \preg_match('/\[(\d+)\]: (.*)/', $error, $m);
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
         }
189 189
 
190 190
         $that = $this;
191
-        $this->loop->addReadStream($this->master, function ($master) use ($that) {
191
+        $this->loop->addReadStream($this->master, function($master) use ($that) {
192 192
             try {
193 193
                 $newSocket = SocketServer::accept($master);
194 194
             } catch (\RuntimeException $e) {
Please login to merge, or discard this patch.
deps/vendor/react/socket/src/DnsConnector.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -49,14 +49,14 @@  discard block
 block discarded – undo
49 49
         $resolved = null;
50 50
 
51 51
         return new Promise\Promise(
52
-            function ($resolve, $reject) use (&$promise, &$resolved, $uri, $connector, $host, $parts) {
52
+            function($resolve, $reject) use (&$promise, &$resolved, $uri, $connector, $host, $parts) {
53 53
                 // resolve/reject with result of DNS lookup
54
-                $promise->then(function ($ip) use (&$promise, &$resolved, $uri, $connector, $host, $parts) {
54
+                $promise->then(function($ip) use (&$promise, &$resolved, $uri, $connector, $host, $parts) {
55 55
                     $resolved = $ip;
56 56
 
57 57
                     return $promise = $connector->connect(
58 58
                         Connector::uri($parts, $host, $ip)
59
-                    )->then(null, function (\Exception $e) use ($uri) {
59
+                    )->then(null, function(\Exception $e) use ($uri) {
60 60
                         if ($e instanceof \RuntimeException) {
61 61
                             $message = \preg_replace('/^(Connection to [^ ]+)[&?]hostname=[^ &]+/', '$1', $e->getMessage());
62 62
                             $e = new \RuntimeException(
@@ -88,11 +88,11 @@  discard block
 block discarded – undo
88 88
 
89 89
                         throw $e;
90 90
                     });
91
-                }, function ($e) use ($uri, $reject) {
92
-                    $reject(new \RuntimeException('Connection to ' . $uri .' failed during DNS lookup: ' . $e->getMessage(), 0, $e));
91
+                }, function($e) use ($uri, $reject) {
92
+                    $reject(new \RuntimeException('Connection to ' . $uri . ' failed during DNS lookup: ' . $e->getMessage(), 0, $e));
93 93
                 })->then($resolve, $reject);
94 94
             },
95
-            function ($_, $reject) use (&$promise, &$resolved, $uri) {
95
+            function($_, $reject) use (&$promise, &$resolved, $uri) {
96 96
                 // cancellation should reject connection attempt
97 97
                 // reject DNS resolution with custom reason, otherwise rely on connection cancellation below
98 98
                 if ($resolved === null) {
Please login to merge, or discard this patch.
deps/vendor/react/socket/src/UnixServer.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -69,13 +69,13 @@  discard block
 block discarded – undo
69 69
 
70 70
         $errno = 0;
71 71
         $errstr = '';
72
-        \set_error_handler(function ($_, $error) use (&$errno, &$errstr) {
72
+        \set_error_handler(function($_, $error) use (&$errno, &$errstr) {
73 73
             // PHP does not seem to report errno/errstr for Unix domain sockets (UDS) right now.
74 74
             // This only applies to UDS server sockets, see also https://3v4l.org/NAhpr.
75 75
             // Parse PHP warning message containing unknown error, HHVM reports proper info at least.
76 76
             if (\preg_match('/\(([^\)]+)\)|\[(\d+)\]: (.*)/', $error, $match)) {
77 77
                 $errstr = isset($match[3]) ? $match['3'] : $match[1];
78
-                $errno = isset($match[2]) ? (int)$match[2] : 0;
78
+                $errno = isset($match[2]) ? (int) $match[2] : 0;
79 79
             }
80 80
         });
81 81
 
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
         }
127 127
 
128 128
         $that = $this;
129
-        $this->loop->addReadStream($this->master, function ($master) use ($that) {
129
+        $this->loop->addReadStream($this->master, function($master) use ($that) {
130 130
             try {
131 131
                 $newSocket = SocketServer::accept($master);
132 132
             } catch (\RuntimeException $e) {
Please login to merge, or discard this patch.
deps/vendor/react/socket/src/Connector.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@  discard block
 block discarded – undo
57 57
     {
58 58
         // swap arguments for legacy constructor signature
59 59
         if (($context instanceof LoopInterface || $context === null) && (\func_num_args() <= 1 || \is_array($loop))) {
60
-            $swap = $loop === null ? array(): $loop;
60
+            $swap = $loop === null ? array() : $loop;
61 61
             $loop = $context;
62 62
             $context = $swap;
63 63
         }
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
         );
79 79
 
80 80
         if ($context['timeout'] === true) {
81
-            $context['timeout'] = (float)\ini_get("default_socket_timeout");
81
+            $context['timeout'] = (float) \ini_get("default_socket_timeout");
82 82
         }
83 83
 
84 84
         if ($context['tcp'] instanceof ConnectorInterface) {
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
     {
165 165
         $scheme = 'tcp';
166 166
         if (\strpos($uri, '://') !== false) {
167
-            $scheme = (string)\substr($uri, 0, \strpos($uri, '://'));
167
+            $scheme = (string) \substr($uri, 0, \strpos($uri, '://'));
168 168
         }
169 169
 
170 170
         if (!isset($this->connectors[$scheme])) {
Please login to merge, or discard this patch.
deps/vendor/react/socket/src/Server.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -88,10 +88,10 @@
 block discarded – undo
88 88
         $this->server = $server;
89 89
 
90 90
         $that = $this;
91
-        $server->on('connection', function (ConnectionInterface $conn) use ($that) {
91
+        $server->on('connection', function(ConnectionInterface $conn) use ($that) {
92 92
             $that->emit('connection', array($conn));
93 93
         });
94
-        $server->on('error', function (Exception $error) use ($that) {
94
+        $server->on('error', function(Exception $error) use ($that) {
95 95
             $that->emit('error', array($error));
96 96
         });
97 97
     }
Please login to merge, or discard this patch.