Completed
Push — master ( 9c5fdf...27a5d2 )
by John
7s
created
src/Document/Specification/Operation.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
     {
143 143
         foreach ($this->definition->parameters as $i => $paramDefinition) {
144 144
             if ($paramDefinition->name === $parameterName) {
145
-                return '/' . implode('/', [
145
+                return '/'.implode('/', [
146 146
                     'paths',
147 147
                     str_replace(['~', '/'], ['~0', '~1'], $this->getPath()),
148 148
                     $this->getMethod(),
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
     {
194 194
         $segment = str_replace(['~0', '~1'], ['~', '/'], array_shift($segments));
195 195
         if (property_exists($context, $segment)) {
196
-            $pointer .= '/' . $segment;
196
+            $pointer .= '/'.$segment;
197 197
             if (!count($segments)) {
198 198
                 return $pointer;
199 199
             }
Please login to merge, or discard this patch.
src/Tests/Routing/SwaggerRouteLoaderTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
             ->willReturn((object)[]);
81 81
 
82 82
         $this->loader->load(self::DOCUMENT_PATH);
83
-        $this->loader->load(self::DOCUMENT_PATH . '2');
83
+        $this->loader->load(self::DOCUMENT_PATH.'2');
84 84
     }
85 85
 
86 86
     /**
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
             ->willReturn($pathDefinitions);
101 101
 
102 102
         $routes1 = $this->loader->load(self::DOCUMENT_PATH);
103
-        $routes2 = $this->loader->load(self::DOCUMENT_PATH . '2');
103
+        $routes2 = $this->loader->load(self::DOCUMENT_PATH.'2');
104 104
         $this->assertSame(count($routes1), count(array_diff_key($routes1->all(), $routes2->all())));
105 105
     }
106 106
 
@@ -354,7 +354,7 @@  discard block
 block discarded – undo
354 354
         $definitionPaths = array_keys((array)$pathDefinitions);
355 355
         sort($definitionPaths);
356 356
 
357
-        $routePaths = array_map(function (Route $route) {
357
+        $routePaths = array_map(function(Route $route) {
358 358
             return $route->getPath();
359 359
         }, $routes->getIterator()->getArrayCopy());
360 360
 
Please login to merge, or discard this patch.
src/Tests/Functional/VndParameterValidationErrorTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 
29 29
     public static function setUpBeforeClass()
30 30
     {
31
-        static::initSchemaManager(__DIR__ . '/PetStore/app/swagger/petstore.yml');
31
+        static::initSchemaManager(__DIR__.'/PetStore/app/swagger/petstore.yml');
32 32
     }
33 33
 
34 34
     /**
Please login to merge, or discard this patch.
src/Serialize/SerializationTypeResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
      */
54 54
     protected function qualify(string $resourceNamespace, string $typeName): string
55 55
     {
56
-        return ltrim($resourceNamespace . '\\' . $typeName, '\\');
56
+        return ltrim($resourceNamespace.'\\'.$typeName, '\\');
57 57
     }
58 58
 
59 59
     /**
Please login to merge, or discard this patch.
src/Tests/Response/Error/HttpErrorTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,6 @@
 block discarded – undo
10 10
 
11 11
 use KleijnWeb\SwaggerBundle\Response\Error\HttpError;
12 12
 use KleijnWeb\SwaggerBundle\Response\Error\LogRefBuilder;
13
-use KleijnWeb\SwaggerBundle\Response\ErrorResponseFactory;
14 13
 use Psr\Log\LogLevel;
15 14
 use Symfony\Component\HttpFoundation\Request;
16 15
 
Please login to merge, or discard this patch.
src/Tests/Functional/JmsSerializationPetStoreApiTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 
29 29
     public static function setUpBeforeClass()
30 30
     {
31
-        static::initSchemaManager(__DIR__ . '/PetStore/app/swagger/petstore.yml');
31
+        static::initSchemaManager(__DIR__.'/PetStore/app/swagger/petstore.yml');
32 32
     }
33 33
 
34 34
     /**
Please login to merge, or discard this patch.
src/Tests/Request/ContentDecoder/ContentDecoderTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,13 +50,13 @@
 block discarded – undo
50 50
 
51 51
         $mock->expects($this->any())
52 52
             ->method('serialize')
53
-            ->willReturnCallback(function (array $value) {
53
+            ->willReturnCallback(function(array $value) {
54 54
                 return json_encode($value);
55 55
             });
56 56
 
57 57
         $mock->expects($this->any())
58 58
             ->method('deserialize')
59
-            ->willReturnCallback(function (string $value) {
59
+            ->willReturnCallback(function(string $value) {
60 60
                 $array = json_decode($value, true);
61 61
 
62 62
                 if (!is_array($array)) {
Please login to merge, or discard this patch.
src/Tests/Serialize/Serializer/ObjectDeserializationTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
         $this->typeResolverMock
41 41
             ->expects($this->any())
42 42
             ->method('resolveUsingSchema')
43
-            ->willReturnCallback(function (\stdClass $schema) {
43
+            ->willReturnCallback(function(\stdClass $schema) {
44 44
                 return "KleijnWeb\\SwaggerBundle\\Tests\\Serialize\\Serializer\\Stubs\\$schema->class";
45 45
             });
46 46
 
Please login to merge, or discard this patch.
src/Serialize/Serializer/ObjectSerializer.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
      */
44 44
     public function serialize($data, Specification $specification): string
45 45
     {
46
-        $export = function ($item, \stdClass $schema) use (&$export) {
46
+        $export = function($item, \stdClass $schema) use (&$export) {
47 47
             if ($item instanceof \DateTimeInterface) {
48 48
                 if ($schema->format == 'date') {
49 49
                     return $item->format('Y-m-d');
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
             }
56 56
             switch ($schema->type) {
57 57
                 case 'array':
58
-                    return array_map(function ($value) use (&$export, $schema) {
58
+                    return array_map(function($value) use (&$export, $schema) {
59 59
                         return $export($value, $schema->items);
60 60
                     }, $item);
61 61
                 case 'object':
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
                     $data   = (array)$item;
64 64
                     $offset = strlen($class) + 2;
65 65
 
66
-                    $array = array_filter(array_combine(array_map(function ($k) use ($offset) {
66
+                    $array = array_filter(array_combine(array_map(function($k) use ($offset) {
67 67
                         return substr($k, $offset);
68 68
                     }, array_keys($data)), array_values($data)));
69 69
 
@@ -101,10 +101,10 @@  discard block
 block discarded – undo
101 101
      */
102 102
     public function deserialize($data, string $type, Specification $specification)
103 103
     {
104
-        $import = function ($item, \stdClass $schema) use (&$import) {
104
+        $import = function($item, \stdClass $schema) use (&$import) {
105 105
             switch ($schema->type) {
106 106
                 case 'array':
107
-                    return array_map(function ($value) use (&$import, $schema) {
107
+                    return array_map(function($value) use (&$import, $schema) {
108 108
                         return $import($value, $schema->items);
109 109
                     }, $item);
110 110
                 case 'object':
Please login to merge, or discard this patch.