Skip to content

Commit bb3ddfd

Browse files
Fix style issues
1 parent 13f8646 commit bb3ddfd

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

tests/unit/Console/IO/DefaultIOTest.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,12 @@ public function testAskAndValidateNoHelper(): void
244244
$input = $this->getInputMock();
245245
$output = $this->getOutputMock();
246246
$io = new DefaultIO($input, $output);
247-
$io->askAndValidate('foo', function() { return true; });
247+
$io->askAndValidate(
248+
'foo',
249+
function () {
250+
return true;
251+
}
252+
);
248253
}
249254

250255
/**

0 commit comments

Comments
 (0)