Skip to content

Commit

Permalink
Applied fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
voku authored and StyleCIBot committed Feb 10, 2016
1 parent f1cce95 commit 521bbcc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions tests/ArrayyTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -1510,9 +1510,9 @@ public function testReplaceAllKeysV2()
$resultArrayy = $arrayy->replaceAllKeys($secondArray)->getArray();

$result = array(
1 => "one",
'one' => "two",
2 => "three",
1 => 'one',
'one' => 'two',
2 => 'three',
);
self::assertSame($result, $resultArrayy);
}
Expand Down
2 changes: 1 addition & 1 deletion tests/BasicArrayTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ public function testReIndex(array $array)

public function testReduce()
{
$func = function($resultArray, $value) {
$func = function ($resultArray, $value) {
if ($value % 2 === 0) {
$resultArray[] = $value;
}
Expand Down

0 comments on commit 521bbcc

Please sign in to comment.