Passed
Push — master ( 20ce19...592df1 )
by Arnaud
20:28 queued 16:11
created
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.