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 (#5)
by Timothy
06:55
created
src/ServiceContainer/WebApiExtension.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,8 +75,8 @@
 block discarded – undo
75 75
     private function loadContextInitializer(ContainerBuilder $container, $config)
76 76
     {
77 77
         $definition = new Definition('Behat\WebApiExtension\Context\Initializer\ApiClientAwareInitializer', array(
78
-          new Reference(self::CLIENT_ID),
79
-          $config
78
+            new Reference(self::CLIENT_ID),
79
+            $config
80 80
         ));
81 81
         $definition->addTag(ContextExtension::INITIALIZER_TAG);
82 82
         $container->setDefinition('web_api.context_initializer', $definition);
Please login to merge, or discard this patch.
src/Context/WebApiContext.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -241,7 +241,7 @@
 block discarded – undo
241 241
 
242 242
         if (null === $expected) {
243 243
             throw new \RuntimeException(
244
-              "Can not convert expected to json:\n".$this->replacePlaceHolder($jsonString->getRaw())
244
+                "Can not convert expected to json:\n".$this->replacePlaceHolder($jsonString->getRaw())
245 245
             );
246 246
         }
247 247
 
Please login to merge, or discard this patch.