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
Pull Request — master (#31)
by Leszek
06:08
created
Category
src/Isolate/UnitOfWork/Entity/Definition/Repository/InMemory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
                     sprintf(
101 101
                         "Entity class \"%s\" used in association of \"%s\" entity does not have definition.",
102 102
                         $targetClass,
103
-                        (string)$definition->getClassName()
103
+                        (string) $definition->getClassName()
104 104
                     )
105 105
                 );
106 106
             }
Please login to merge, or discard this patch.
src/Isolate/UnitOfWork/UnitOfWork.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
     public function commit()
127 127
     {
128 128
         foreach ($this->registry->all() as $entity) {
129
-            switch($this->getEntityState($entity)) {
129
+            switch ($this->getEntityState($entity)) {
130 130
                 case EntityStates::NEW_ENTITY:
131 131
                     $this->commandBus->dispatch(new NewCommand($entity));
132 132
                     break;
Please login to merge, or discard this patch.