Completed
Branch master (620859)
by oxidmod
06:34
created
Category
src/Request/Modifier/JsonRequestModifier.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare (strict_types=1);
3
+declare (strict_types = 1);
4 4
 
5 5
 namespace Oxidmod\RestBundle\Request\Modifier;
6 6
 
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 
40 40
         $decodedRequestBody = json_decode($request->getContent(), true);
41 41
 
42
-        if(empty($decodedRequestBody) || json_last_error() !== JSON_ERROR_NONE) {
42
+        if (empty($decodedRequestBody) || json_last_error() !== JSON_ERROR_NONE) {
43 43
             return;
44 44
         }
45 45
 
Please login to merge, or discard this patch.
src/Request/Modifier/RequestModifierInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare (strict_types=1);
3
+declare (strict_types = 1);
4 4
 
5 5
 namespace Oxidmod\RestBundle\Request\Modifier;
6 6
 
Please login to merge, or discard this patch.
src/Request/RequestModifier.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare (strict_types=1);
3
+declare (strict_types = 1);
4 4
 
5 5
 namespace Oxidmod\RestBundle\Request;
6 6
 
Please login to merge, or discard this patch.
src/DependencyInjection/Compiler/RequestModifierCompilerPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare (strict_types=1);
3
+declare (strict_types = 1);
4 4
 
5 5
 namespace Oxidmod\RestBundle\DependencyInjection\Compiler;
6 6
 
Please login to merge, or discard this patch.
src/DependencyInjection/Compiler/ResponseModifierCompilerPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare (strict_types=1);
3
+declare (strict_types = 1);
4 4
 
5 5
 namespace Oxidmod\RestBundle\DependencyInjection\Compiler;
6 6
 
Please login to merge, or discard this patch.
src/DependencyInjection/Compiler/TransformerCompilerPass.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare (strict_types=1);
3
+declare (strict_types = 1);
4 4
 
5 5
 namespace Oxidmod\RestBundle\DependencyInjection\Compiler;
6 6
 
Please login to merge, or discard this patch.
src/DependencyInjection/RestExtension.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare (strict_types=1);
3
+declare (strict_types = 1);
4 4
 
5 5
 namespace Oxidmod\RestBundle\DependencyInjection;
6 6
 
Please login to merge, or discard this patch.
src/Response/ResponseModifier.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare (strict_types=1);
3
+declare (strict_types = 1);
4 4
 
5 5
 namespace Oxidmod\RestBundle\Response;
6 6
 
Please login to merge, or discard this patch.
src/Response/Modifier/ContentTypeModifier.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare (strict_types=1);
3
+declare (strict_types = 1);
4 4
 
5 5
 namespace Oxidmod\RestBundle\Response\Modifier;
6 6
 
Please login to merge, or discard this patch.