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 ( 474714...b3d206 )
by Robert
02:12
created
lib/Console/Command/MigrationsCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
 
55 55
         $directories = $input->getArgument('migration-directories');
56 56
         foreach ($directories as $directory) {
57
-            if (! is_dir($directory)) {
57
+            if (!is_dir($directory)) {
58 58
                 throw new Console\Exception\InvalidArgumentException("'{$directory}' is no valid directory");
59 59
             }
60 60
 
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
         $migrationClassesCount = count($migrations);
98 98
         $output->writeln("<info>✓ Found {$migrationClassesCount} valid migration classes</info>", $output::VERBOSITY_VERBOSE);
99 99
 
100
-        uasort($migrations, function (MongoDbMigrations\MigrationInterface $a, MongoDbMigrations\MigrationInterface $b) {
100
+        uasort($migrations, function(MongoDbMigrations\MigrationInterface $a, MongoDbMigrations\MigrationInterface $b) {
101 101
             if ($a->getCreateDate() === $b->getCreateDate()) {
102 102
                 return 0;
103 103
             }
Please login to merge, or discard this patch.