Completed
Push — master ( f0fa18...b24fdb )
by John
20:29
created
src/Tests/Response/VndValidationErrorFactoryTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
             ->getMockBuilder('KleijnWeb\SwaggerBundle\Document\ParameterRefBuilder')
36 36
             ->disableOriginalConstructor()
37 37
             ->getMock();
38
-        $this->factory    = new VndValidationErrorFactory($this->refBuilder);
38
+        $this->factory = new VndValidationErrorFactory($this->refBuilder);
39 39
     }
40 40
 
41 41
     /**
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
      */
71 71
     public function resultIncludesErrorMessagesCreatedByJsonSchema()
72 72
     {
73
-        $value     = (object)[
73
+        $value = (object)[
74 74
             'foo' => (object)[
75 75
                 'blah' => 'one'
76 76
             ],
Please login to merge, or discard this patch.
src/Tests/Response/ResponseFactorySymfonySerializerCompatibilityTest.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
 /*
3 3
  * This file is part of the KleijnWeb\SwaggerBundle package.
4 4
  *
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
         $jsonEncoderMock
45 45
             ->expects($this->once())
46 46
             ->method('encode')
47
-            ->willReturnCallback(function ($string) {
47
+            ->willReturnCallback(function($string) {
48 48
                 $data = json_encode($string);
49 49
                 if (is_null($data)) {
50 50
                     throw new \Exception();
Please login to merge, or discard this patch.
src/Tests/Response/ResponseFactoryJmsSerializerCompatibilityTest.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
 /*
3 3
  * This file is part of the KleijnWeb\SwaggerBundle package.
4 4
  *
Please login to merge, or discard this patch.
src/Tests/EventListener/VndErrorExceptionListenerTest.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
 /*
3 3
  * This file is part of the KleijnWeb\SwaggerBundle package.
4 4
  *
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
             $logger
221 221
                 ->expects($this->once())
222 222
                 ->method('log')
223
-                ->with($this->anything(), $this->callback(function ($message) use (&$logref) {
223
+                ->with($this->anything(), $this->callback(function($message) use (&$logref) {
224 224
                     $matches = [];
225 225
                     if (preg_match('/logref ([a-z0-9]*)/', $message, $matches)) {
226 226
                         $logref = $matches[1];
Please login to merge, or discard this patch.
src/Tests/EventListener/RequestListenerTest.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
 /*
3 3
  * This file is part of the KleijnWeb\SwaggerBundle package.
4 4
  *
Please login to merge, or discard this patch.
src/Tests/EventListener/ViewListenerTest.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
 /*
3 3
  * This file is part of the KleijnWeb\SwaggerBundle package.
4 4
  *
Please login to merge, or discard this patch.
src/Tests/Functional/PetStore/EventListener/ResponseListener.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
 /*
3 3
  * This file is part of the KleijnWeb\RestETagBundle package.
4 4
  *
Please login to merge, or discard this patch.
src/Tests/Functional/PetStore/Controller/EntityController.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
 /*
3 3
  * This file is part of the KleijnWeb\SwaggerBundle package.
4 4
  *
Please login to merge, or discard this patch.
src/Tests/Functional/PetStore/Controller/PetController.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
 /*
3 3
  * This file is part of the KleijnWeb\SwaggerBundle package.
4 4
  *
Please login to merge, or discard this patch.