Passed
Push — master ( b3797f...a7466d )
by Arnaud
09:24
created
src/Field/CountField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
 
20 20
     public function getDataTransformer(): ?\Closure
21 21
     {
22
-        return function ($data) {
22
+        return function($data) {
23 23
             return is_countable($data) ? \count($data) : 0;
24 24
         };
25 25
     }
Please login to merge, or discard this patch.
src/Field/ArrayField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 
30 30
     public function getDataTransformer(): ?\Closure
31 31
     {
32
-        return function ($data) {
32
+        return function($data) {
33 33
             if ($data === null) {
34 34
                 return '';
35 35
             }
Please login to merge, or discard this patch.
tests/phpunit/Bridge/Doctrine/ORM/Metadata/MetadataHelperTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
         $metadataFactory
21 21
             ->expects($this->once())
22 22
             ->method('getMetadataFor')
23
-            ->willReturnCallback(function (string $class) {
23
+            ->willReturnCallback(function(string $class) {
24 24
                 $this->assertEquals('MyLittleClass', $class);
25 25
 
26 26
                 throw new \Exception();
Please login to merge, or discard this patch.
src/Field/AutoField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 
30 30
     public function getDataTransformer(): ?\Closure
31 31
     {
32
-        return function ($data) {
32
+        return function($data) {
33 33
             if ($data === null) {
34 34
                 return '';
35 35
             }
Please login to merge, or discard this patch.