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 ( 5e3694...968b0c )
by Robert
9s
created
examples/Migrations/ObfuscateProductionEmailAddresses.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 MyMigrations;
4 4
 
Please login to merge, or discard this patch.
examples/Migrations/ReleaseCounter.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 MyMigrations;
4 4
 
Please login to merge, or discard this patch.
examples/Migrations/CreateUserCollection.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 MyMigrations;
4 4
 
Please login to merge, or discard this patch.
lib/RunAlwaysMigrationInterface.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;
4 4
 
Please login to merge, or discard this patch.
lib/ContextualMigrationInterface.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;
4 4
 
Please login to merge, or discard this patch.
lib/MigrationInterface.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;
4 4
 
Please login to merge, or discard this patch.
lib/Console/Command/MigrationsCommand.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
 
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
 
56 56
         $directories = $input->getArgument('migration-directories');
57 57
         foreach ($directories as $directory) {
58
-            if (! is_dir($directory)) {
58
+            if (!is_dir($directory)) {
59 59
                 throw new Console\Exception\InvalidArgumentException("'{$directory}' is no valid directory");
60 60
             }
61 61
 
@@ -98,7 +98,7 @@  discard block
 block discarded – undo
98 98
         $migrationClassesCount = count($migrations);
99 99
         $output->writeln("<info>✓ Found {$migrationClassesCount} valid migration classes</info>", $output::VERBOSITY_VERBOSE);
100 100
 
101
-        uasort($migrations, function (MongoDbMigrations\MigrationInterface $a, MongoDbMigrations\MigrationInterface $b) {
101
+        uasort($migrations, function(MongoDbMigrations\MigrationInterface $a, MongoDbMigrations\MigrationInterface $b) {
102 102
             if ($a->getCreateDate() === $b->getCreateDate()) {
103 103
                 return 0;
104 104
             }
Please login to merge, or discard this patch.
lib/Console/Command/ReleaseLockCommand.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.