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 (#17)
by
unknown
02:16
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/ServiceContainer/SoapExtension.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,8 +7,8 @@
 block discarded – undo
7 7
 use Behat\EnvironmentLoader;
8 8
 use Behat\Testwork\ServiceContainer\Extension;
9 9
 use Behat\Testwork\ServiceContainer\ExtensionManager;
10
-use Symfony\Component\DependencyInjection\ContainerBuilder;
11 10
 use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
11
+use Symfony\Component\DependencyInjection\ContainerBuilder;
12 12
 
13 13
 /**
14 14
  * Class SoapExtension.
Please login to merge, or discard this patch.
src/Utils/SoapFaultProcessor.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,8 +67,8 @@
 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->errors)) {
74 74
             throw new \RuntimeException(implode("\n", $this->errors));
Please login to merge, or discard this patch.
src/Context/RawSoapContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
     {
56 56
         // Initialize SOAP manager with predefined values from configuration.
57 57
         foreach (['options', 'namespaces'] as $param) {
58
-            $method = 'set' . ucfirst($param);
58
+            $method = 'set'.ucfirst($param);
59 59
 
60 60
             // Unset all options and namespaces and initialize them from config.
61 61
             foreach ([null, $this->getSoapParameter($param)] as $value) {
Please login to merge, or discard this patch.