Skip to content

Commit 17cc7ce

Browse files
Fix CS
1 parent 6f6900c commit 17cc7ce

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

test/Command/EditUserCommand.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
declare(strict_types=1);
34

45
namespace Matthias\SymfonyConsoleForm\Tests\Command;

test/Command/PrintFormDataCommand.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,14 @@ protected function execute(InputInterface $input, OutputInterface $output): int
1616
$printData = $formData->__toString();
1717
} else {
1818
$printData = print_r(
19-
array_map(function ($data) {
19+
array_map(function ($data) {
2020
if ($data instanceof \DateTime) {
2121
return $data->format(\DateTime::ISO8601);
2222
}
2323

2424
return $data;
2525
}, (array)$formData),
26-
true
26+
true
2727
);
2828
}
2929

test/Form/Data/User.php

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
declare(strict_types=1);
34

45
namespace Matthias\SymfonyConsoleForm\Tests\Form\Data;

0 commit comments

Comments
 (0)