Passed
Pull Request — master (#48)
by Baptiste
02:17
created
src/Debug/CliController.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
 namespace Behapi\Debug;
3 3
 
4 4
 use Symfony\Component\Console\Command\Command;
Please login to merge, or discard this patch.
src/Json/AbstractContext.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
 namespace Behapi\Json;
3 3
 
4 4
 use stdClass;
Please login to merge, or discard this patch.
src/Container.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
 namespace Behapi;
3 3
 
4 4
 use Psr\Container\ContainerInterface;
Please login to merge, or discard this patch.
src/PhpMatcher/MatcherFactory.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
 namespace Behapi\PhpMatcher;
3 3
 
4 4
 use Coduo\PHPMatcher\Matcher;
Please login to merge, or discard this patch.
src/Behapi.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
 namespace Behapi;
3 3
 
4 4
 use Behat\Testwork\ServiceContainer\Extension;
Please login to merge, or discard this patch.
src/HttpHistory/Listener.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
 namespace Behapi\HttpHistory;
3 3
 
4 4
 use Symfony\Component\EventDispatcher\EventSubscriberInterface;
Please login to merge, or discard this patch.
src/Http/Response.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
 namespace Behapi\Http;
3 3
 
4 4
 use RuntimeException;
Please login to merge, or discard this patch.
src/Http/PluginClientBuilder.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
 namespace Behapi\Http;
3 3
 
4 4
 use Http\Client\Common\Plugin;
Please login to merge, or discard this patch.
src/Json/Context.php 1 patch
Spacing   +2 added lines, -2 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
 namespace Behapi\Json;
3 3
 
4 4
 use stdClass;
@@ -51,7 +51,7 @@  discard block
 block discarded – undo
51 51
     {
52 52
         $this->getJson();
53 53
 
54
-        [$contentType,] = explode(';', $this->getResponse()->getHeaderLine('Content-Type'), 2);
54
+        [$contentType, ] = explode(';', $this->getResponse()->getHeaderLine('Content-Type'), 2);
55 55
 
56 56
         Assert::same(JSON_ERROR_NONE, json_last_error(), sprintf('The response is not a valid json (%s)', json_last_error_msg()));
57 57
         Assert::oneOf($contentType, $this->getContentTypes(), 'The response should have a valid content-type (expected one of %2$s, got %1$s)');
Please login to merge, or discard this patch.