Skip to content

Commit 3f881df

Browse files
committed
lint: cs fix
1 parent fd0d8ce commit 3f881df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/CollectionTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ public function test_each()
1414

1515
$answers = [];
1616
$count = 0;
17-
_::_([1, 2, 3])->each(function($num) use (&$answers, &$count) {
17+
_::_([1, 2, 3])->each(function ($num) use (&$answers, &$count) {
1818
$answers[] = $num * 5;
1919
$count++;
2020
});
@@ -23,7 +23,7 @@ public function test_each()
2323
$this->assertSame($count, 3, 'callback applied exactly 3 times');
2424

2525
$answers = [];
26-
_::_(['one' => 1, 'two' => 2, 'three' => 3])->each(function($num, $index) use (&$answers) {
26+
_::_(['one' => 1, 'two' => 2, 'three' => 3])->each(function ($num, $index) use (&$answers) {
2727
$answers[] = $index;
2828
});
2929

0 commit comments

Comments
 (0)