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 ( e55d70...f7638b )
by Alexei
34:28
created
src/Context/SoapContext.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,12 +4,12 @@
 block discarded – undo
4 4
  */
5 5
 namespace Behat\SoapExtension\Context;
6 6
 
7
-use Symfony\Component\Yaml\Yaml;
8 7
 use PHPUnit_Framework_Assert as Assertions;
8
+use Symfony\Component\Yaml\Yaml;
9 9
 
10 10
 // Argument processors.
11
-use Behat\Gherkin\Node\TableNode;
12 11
 use Behat\Gherkin\Node\PyStringNode;
12
+use Behat\Gherkin\Node\TableNode;
13 13
 
14 14
 // Utils.
15 15
 use Behat\SoapExtension\Utils\SoapFaultProcessor;
Please login to merge, or discard this patch.
src/Utils/SoapFaultProcessor.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @author Sergii Bondarenko, <[email protected]>
4
- */
3
+     * @author Sergii Bondarenko, <[email protected]>
4
+     */
5 5
 namespace Behat\SoapExtension\Utils;
6 6
 
7 7
 /**
@@ -67,8 +67,8 @@  discard block
 block discarded – undo
67 67
     public function __destruct()
68 68
     {
69 69
         $this->processCode()
70
-          ->processMessage()
71
-          ->processCondition();
70
+            ->processMessage()
71
+            ->processCondition();
72 72
 
73 73
         if (!empty($this->messages)) {
74 74
             throw new \RuntimeException(implode("\n", $this->messages));
Please login to merge, or discard this patch.