Completed
Pull Request — master (#73)
by Cethy
02:52
created
src/Serializer/SerializerAdapter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
     /**
70 70
      * Deserializes data into the given type.
71 71
      *
72
-     * @param mixed                      $data
72
+     * @param string                      $data
73 73
      * @param string                     $type
74 74
      * @param string                     $format
75 75
      * @param SerializationContext|array $context
Please login to merge, or discard this patch.
src/Tests/Routing/SwaggerRouteLoaderTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -243,7 +243,7 @@
 block discarded – undo
243 243
 
244 244
         $definitionPaths = array_keys($pathDefinitions);
245 245
         sort($definitionPaths);
246
-        $routePaths = array_map(function ($route) {
246
+        $routePaths = array_map(function($route) {
247 247
             return $route->getPath();
248 248
         }, $routes->getIterator()->getArrayCopy());
249 249
         sort($routePaths);
Please login to merge, or discard this patch.
src/Tests/Request/RequestCoercerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
         $this->contentDecoderMock
33 33
             ->expects($this->any())
34 34
             ->method('decodeContent')
35
-            ->willReturnCallback(function (Request $request) {
35
+            ->willReturnCallback(function(Request $request) {
36 36
                 return json_decode($request->getContent());
37 37
             });
38 38
     }
Please login to merge, or discard this patch.
src/Tests/Response/ResponseFactorySymfonySerializerCompatibilityTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 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.
Request/ContentDecoder/ContentDecoderSymfonySerializerCompatibilityTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@
 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/Document/RefResolver.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -197,7 +197,7 @@
 block discarded – undo
197 197
     {
198 198
         $exception = new ResourceNotReadableException("Failed reading '$uri'");
199 199
 
200
-        set_error_handler(function () use ($exception) {
200
+        set_error_handler(function() use ($exception) {
201 201
             throw $exception;
202 202
         });
203 203
         $response = file_get_contents($uri);
Please login to merge, or discard this patch.
src/Tests/Functional/PetStore/Controller/UserController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
      * @param string $username
18 18
      * @param string $password
19 19
      *
20
-     * @return array
20
+     * @return string
21 21
      */
22 22
     public function loginUser($username, $password)
23 23
     {
Please login to merge, or discard this patch.
src/Tests/EventListener/VndErrorExceptionListenerTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -203,7 +203,7 @@
 block discarded – undo
203 203
             $logger
204 204
                 ->expects($this->once())
205 205
                 ->method('log')
206
-                ->with($this->anything(), $this->callback(function ($message) use (&$logref) {
206
+                ->with($this->anything(), $this->callback(function($message) use (&$logref) {
207 207
                     $matches = [];
208 208
                     if (preg_match('/logref ([a-z0-9]*)/', $message, $matches)) {
209 209
                         $logref = $matches[1];
Please login to merge, or discard this patch.
src/DependencyInjection/Configuration.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
                                 ->scalarNode('base_url')->defaultValue('/')->end()
51 51
                                 ->scalarNode('host')->defaultNull()->end()
52 52
                             ->end()
53
-                         ->end()
53
+                            ->end()
54 54
                     ->end()
55 55
                 ->end()
56 56
             ->end()
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
                         ->arrayNode('namespace')
38 38
                             ->beforeNormalization()
39 39
                                 ->ifString()
40
-                                ->then(function ($v) { return [$v]; })
40
+                                ->then(function($v) { return [$v]; })
41 41
                             ->end()
42 42
                             ->prototype('scalar')
43 43
                             ->end()
Please login to merge, or discard this patch.