Passed
Pull Request — master (#364)
by Arnaud
07:47
created
src/Field/AutoField.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 
23 23
     public function getDataTransformer(): ?\Closure
24 24
     {
25
-        return function ($data) {
25
+        return function($data) {
26 26
             if ($data === null) {
27 27
                 return '';
28 28
             }
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.