Passed
Branch master (3ceed6)
by N'Diaye
12:48 queued 01:53
created
Tests/Http/ClientTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,6 @@
 block discarded – undo
19 19
 use Andi\KickBoxBundle\Tests\Factory\ResponseFactoryTest;
20 20
 use GuzzleHttp\Psr7\Response as HttpResponse;
21 21
 use GuzzleHttp\Psr7\Request;
22
-use GuzzleHttp\Psr7\Stream;
23 22
 use Phake;
24 23
 use GuzzleHttp\Client as HttpClient;
25 24
 
Please login to merge, or discard this patch.
DependencyInjection/AndiKickBoxExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -95,6 +95,6 @@
 block discarded – undo
95 95
      */
96 96
     protected function getClientServiceName($name)
97 97
     {
98
-        return static::DEFAULT_CLIENT_SERVICE_NAME . '.' . $name;
98
+        return static::DEFAULT_CLIENT_SERVICE_NAME.'.'.$name;
99 99
     }
100 100
 }
Please login to merge, or discard this patch.
Exception/KickBoxApiException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,6 +33,6 @@
 block discarded – undo
33 33
         ResponseInterface $response = null,
34 34
         \Exception $previous = null
35 35
     ) {
36
-        parent::__construct(self::MESSAGE . $message, $request, $response, $previous);
36
+        parent::__construct(self::MESSAGE.$message, $request, $response, $previous);
37 37
     }
38 38
 }
Please login to merge, or discard this patch.
Exception/InvalidContentException.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      */
28 28
     public function __construct(array $expectedParameters, $code = 0, Exception $previous = null)
29 29
     {
30
-        $message = self::MESSAGE . implode(', ', $expectedParameters);
30
+        $message = self::MESSAGE.implode(', ', $expectedParameters);
31 31
 
32 32
         parent::__construct($message, $code, $previous);
33 33
     }
Please login to merge, or discard this patch.