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 ( 513f1e...e33bd5 )
by Robert
12s
created
lib/Console/Command/MigrationsCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Gruberro\MongoDbMigrations\Console\Command;
4 4
 
Please login to merge, or discard this patch.
lib/Console/Command/VersionsCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Gruberro\MongoDbMigrations\Console\Command;
4 4
 
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
             }
115 115
 
116 116
             if ($id !== null) {
117
-                $migrations = array_filter($migrations, function (MongoDbMigrations\MigrationInterface $migration) use ($id): bool {
117
+                $migrations = array_filter($migrations, function(MongoDbMigrations\MigrationInterface $migration) use ($id): bool {
118 118
                     return $migration->getId() === $id;
119 119
                 });
120 120
 
Please login to merge, or discard this patch.
lib/Console/Command/AbstractCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 
3 3
 namespace Gruberro\MongoDbMigrations\Console\Command;
4 4
 
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     protected function getMigrations(array $directories): array
33 33
     {
34 34
         foreach ($directories as $directory) {
35
-            if (! is_dir($directory)) {
35
+            if (!is_dir($directory)) {
36 36
                 throw new Console\Exception\InvalidArgumentException("'{$directory}' is no valid directory");
37 37
             }
38 38
 
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
         $migrationClassesCount = count($migrations);
76 76
         $this->output->writeln("<info>✓ Found {$migrationClassesCount} valid migration classes</info>", OutputInterface::VERBOSITY_VERBOSE);
77 77
 
78
-        uasort($migrations, function (MongoDbMigrations\MigrationInterface $a, MongoDbMigrations\MigrationInterface $b) {
78
+        uasort($migrations, function(MongoDbMigrations\MigrationInterface $a, MongoDbMigrations\MigrationInterface $b) {
79 79
             if ($a->getCreateDate() === $b->getCreateDate()) {
80 80
                 return 0;
81 81
             }
Please login to merge, or discard this patch.