@@ -8,32 +8,32 @@ discard block |
||
| 8 | 8 | */ |
| 9 | 9 | function equals() |
| 10 | 10 | { |
| 11 | - $equals = function ($a, $b) { |
|
| 11 | + $equals = function ($a, $b) { |
|
| 12 | 12 | return $a == $b; |
| 13 | - }; |
|
| 14 | - $arguments = func_get_args(); |
|
| 15 | - $curried = curryN($equals, 2); |
|
| 16 | - return call_user_func_array($curried, $arguments); |
|
| 13 | + }; |
|
| 14 | + $arguments = func_get_args(); |
|
| 15 | + $curried = curryN($equals, 2); |
|
| 16 | + return call_user_func_array($curried, $arguments); |
|
| 17 | 17 | } |
| 18 | 18 | |
| 19 | 19 | function gt() |
| 20 | 20 | { |
| 21 | - $gt = function ($a, $b) { |
|
| 21 | + $gt = function ($a, $b) { |
|
| 22 | 22 | return $a > $b; |
| 23 | - }; |
|
| 24 | - $arguments = func_get_args(); |
|
| 25 | - $curried = curryN($gt, 2); |
|
| 26 | - return call_user_func_array($curried, $arguments); |
|
| 23 | + }; |
|
| 24 | + $arguments = func_get_args(); |
|
| 25 | + $curried = curryN($gt, 2); |
|
| 26 | + return call_user_func_array($curried, $arguments); |
|
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | function gte() |
| 30 | 30 | { |
| 31 | - $gte = function ($a, $b) { |
|
| 31 | + $gte = function ($a, $b) { |
|
| 32 | 32 | return $a >= $b; |
| 33 | - }; |
|
| 34 | - $arguments = func_get_args(); |
|
| 35 | - $curried = curryN($gte, 2); |
|
| 36 | - return call_user_func_array($curried, $arguments); |
|
| 33 | + }; |
|
| 34 | + $arguments = func_get_args(); |
|
| 35 | + $curried = curryN($gte, 2); |
|
| 36 | + return call_user_func_array($curried, $arguments); |
|
| 37 | 37 | } |
| 38 | 38 | |
| 39 | 39 | /** |
@@ -44,30 +44,30 @@ discard block |
||
| 44 | 44 | */ |
| 45 | 45 | function identical() |
| 46 | 46 | { |
| 47 | - $identical = function ($firstValue, $secondValue) { |
|
| 47 | + $identical = function ($firstValue, $secondValue) { |
|
| 48 | 48 | return $firstValue === $secondValue; |
| 49 | - }; |
|
| 50 | - $arguments = func_get_args(); |
|
| 51 | - $curried = curryN($identical, 2); |
|
| 52 | - return call_user_func_array($curried, $arguments); |
|
| 49 | + }; |
|
| 50 | + $arguments = func_get_args(); |
|
| 51 | + $curried = curryN($identical, 2); |
|
| 52 | + return call_user_func_array($curried, $arguments); |
|
| 53 | 53 | } |
| 54 | 54 | |
| 55 | 55 | function lt() |
| 56 | 56 | { |
| 57 | - $lt = function ($a, $b) { |
|
| 57 | + $lt = function ($a, $b) { |
|
| 58 | 58 | return $a < $b; |
| 59 | - }; |
|
| 60 | - $arguments = func_get_args(); |
|
| 61 | - $curried = curryN($lt, 2); |
|
| 62 | - return call_user_func_array($curried, $arguments); |
|
| 59 | + }; |
|
| 60 | + $arguments = func_get_args(); |
|
| 61 | + $curried = curryN($lt, 2); |
|
| 62 | + return call_user_func_array($curried, $arguments); |
|
| 63 | 63 | } |
| 64 | 64 | |
| 65 | 65 | function lte() |
| 66 | 66 | { |
| 67 | - $lte = function ($a, $b) { |
|
| 67 | + $lte = function ($a, $b) { |
|
| 68 | 68 | return $a <= $b; |
| 69 | - }; |
|
| 70 | - $arguments = func_get_args(); |
|
| 71 | - $curried = curryN($lte, 2); |
|
| 72 | - return call_user_func_array($curried, $arguments); |
|
| 69 | + }; |
|
| 70 | + $arguments = func_get_args(); |
|
| 71 | + $curried = curryN($lte, 2); |
|
| 72 | + return call_user_func_array($curried, $arguments); |
|
| 73 | 73 | } |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | */ |
| 9 | 9 | function equals() |
| 10 | 10 | { |
| 11 | - $equals = function ($a, $b) { |
|
| 11 | + $equals = function($a, $b) { |
|
| 12 | 12 | return $a == $b; |
| 13 | 13 | }; |
| 14 | 14 | $arguments = func_get_args(); |
@@ -18,7 +18,7 @@ discard block |
||
| 18 | 18 | |
| 19 | 19 | function gt() |
| 20 | 20 | { |
| 21 | - $gt = function ($a, $b) { |
|
| 21 | + $gt = function($a, $b) { |
|
| 22 | 22 | return $a > $b; |
| 23 | 23 | }; |
| 24 | 24 | $arguments = func_get_args(); |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | |
| 29 | 29 | function gte() |
| 30 | 30 | { |
| 31 | - $gte = function ($a, $b) { |
|
| 31 | + $gte = function($a, $b) { |
|
| 32 | 32 | return $a >= $b; |
| 33 | 33 | }; |
| 34 | 34 | $arguments = func_get_args(); |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | */ |
| 45 | 45 | function identical() |
| 46 | 46 | { |
| 47 | - $identical = function ($firstValue, $secondValue) { |
|
| 47 | + $identical = function($firstValue, $secondValue) { |
|
| 48 | 48 | return $firstValue === $secondValue; |
| 49 | 49 | }; |
| 50 | 50 | $arguments = func_get_args(); |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | |
| 55 | 55 | function lt() |
| 56 | 56 | { |
| 57 | - $lt = function ($a, $b) { |
|
| 57 | + $lt = function($a, $b) { |
|
| 58 | 58 | return $a < $b; |
| 59 | 59 | }; |
| 60 | 60 | $arguments = func_get_args(); |
@@ -64,7 +64,7 @@ discard block |
||
| 64 | 64 | |
| 65 | 65 | function lte() |
| 66 | 66 | { |
| 67 | - $lte = function ($a, $b) { |
|
| 67 | + $lte = function($a, $b) { |
|
| 68 | 68 | return $a <= $b; |
| 69 | 69 | }; |
| 70 | 70 | $arguments = func_get_args(); |
@@ -6,24 +6,24 @@ |
||
| 6 | 6 | |
| 7 | 7 | class FindTest extends TestCase |
| 8 | 8 | { |
| 9 | - public function testFindWithExistingValue() |
|
| 10 | - { |
|
| 9 | + public function testFindWithExistingValue() |
|
| 10 | + { |
|
| 11 | 11 | $isEqual3 = function ($it) { |
| 12 | - return 3 == $it; |
|
| 12 | + return 3 == $it; |
|
| 13 | 13 | }; |
| 14 | 14 | $list = [1, 2, 3, 4, 5]; |
| 15 | 15 | $expect = 3; |
| 16 | 16 | $actual = find($isEqual3)($list); |
| 17 | 17 | $this->assertEquals($expect, $actual); |
| 18 | - } |
|
| 18 | + } |
|
| 19 | 19 | |
| 20 | - public function testFindWithNonExistingValue() |
|
| 21 | - { |
|
| 20 | + public function testFindWithNonExistingValue() |
|
| 21 | + { |
|
| 22 | 22 | $isEqual11 = function ($it) { |
| 23 | - return 11 == $it; |
|
| 23 | + return 11 == $it; |
|
| 24 | 24 | }; |
| 25 | 25 | $list = [1, 2, 3, 4, 5]; |
| 26 | 26 | $actual = find($isEqual11)($list); |
| 27 | 27 | $this->assertNull($actual); |
| 28 | - } |
|
| 28 | + } |
|
| 29 | 29 | } |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | { |
| 9 | 9 | public function testFindWithExistingValue() |
| 10 | 10 | { |
| 11 | - $isEqual3 = function ($it) { |
|
| 11 | + $isEqual3 = function($it) { |
|
| 12 | 12 | return 3 == $it; |
| 13 | 13 | }; |
| 14 | 14 | $list = [1, 2, 3, 4, 5]; |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | |
| 20 | 20 | public function testFindWithNonExistingValue() |
| 21 | 21 | { |
| 22 | - $isEqual11 = function ($it) { |
|
| 22 | + $isEqual11 = function($it) { |
|
| 23 | 23 | return 11 == $it; |
| 24 | 24 | }; |
| 25 | 25 | $list = [1, 2, 3, 4, 5]; |
@@ -6,55 +6,55 @@ |
||
| 6 | 6 | |
| 7 | 7 | class EndsWithTest extends TestCase |
| 8 | 8 | { |
| 9 | - public function testEndsWithValidString() |
|
| 10 | - { |
|
| 9 | + public function testEndsWithValidString() |
|
| 10 | + { |
|
| 11 | 11 | $suffix = 'SomeKeyword'; |
| 12 | 12 | $list = 'StringWhichEndsWithSomeKeyword'; |
| 13 | 13 | $actual = endsWith($suffix)($list); |
| 14 | 14 | $this->assertTrue($actual); |
| 15 | - } |
|
| 15 | + } |
|
| 16 | 16 | |
| 17 | - public function testEndsWithInvalidString() |
|
| 18 | - { |
|
| 17 | + public function testEndsWithInvalidString() |
|
| 18 | + { |
|
| 19 | 19 | $suffix = 'AnotherKeyword'; |
| 20 | 20 | $list = 'StringWhichEndsWithSomeKeyword'; |
| 21 | 21 | $actual = endsWith($suffix)($list); |
| 22 | 22 | $this->assertFalse($actual); |
| 23 | - } |
|
| 23 | + } |
|
| 24 | 24 | |
| 25 | - public function testEndsWithEmptyString() |
|
| 26 | - { |
|
| 25 | + public function testEndsWithEmptyString() |
|
| 26 | + { |
|
| 27 | 27 | $suffix = ''; |
| 28 | 28 | $list = 'StringWhichEndsWithSomeKeyword'; |
| 29 | 29 | $actual = endsWith($suffix)($list); |
| 30 | 30 | $this->assertTrue($actual); |
| 31 | - } |
|
| 31 | + } |
|
| 32 | 32 | |
| 33 | - public function testWithUnsupportedArguments() |
|
| 34 | - { |
|
| 33 | + public function testWithUnsupportedArguments() |
|
| 34 | + { |
|
| 35 | 35 | $this->expectException(\InvalidArgumentException::class); |
| 36 | 36 | endsWith(1)('111'); |
| 37 | - } |
|
| 37 | + } |
|
| 38 | 38 | |
| 39 | - public function testEndsWithEmptyArray() |
|
| 40 | - { |
|
| 39 | + public function testEndsWithEmptyArray() |
|
| 40 | + { |
|
| 41 | 41 | $suffix = []; |
| 42 | 42 | $list = [1, 2 ,3, 4]; |
| 43 | 43 | $actual = endsWith($suffix)($list); |
| 44 | 44 | $this->assertTrue($actual); |
| 45 | - } |
|
| 46 | - public function testEndsWithValidArray() |
|
| 47 | - { |
|
| 45 | + } |
|
| 46 | + public function testEndsWithValidArray() |
|
| 47 | + { |
|
| 48 | 48 | $suffix = [4]; |
| 49 | 49 | $list = [1, 2 ,3, 4]; |
| 50 | 50 | $actual = endsWith($suffix)($list); |
| 51 | 51 | $this->assertTrue($actual); |
| 52 | - } |
|
| 53 | - public function testEndsWithInvalidArray() |
|
| 54 | - { |
|
| 52 | + } |
|
| 53 | + public function testEndsWithInvalidArray() |
|
| 54 | + { |
|
| 55 | 55 | $suffix = [5]; |
| 56 | 56 | $list = [1, 2 ,3, 4]; |
| 57 | 57 | $actual = endsWith($suffix)($list); |
| 58 | 58 | $this->assertFalse($actual); |
| 59 | - } |
|
| 59 | + } |
|
| 60 | 60 | } |
@@ -39,21 +39,21 @@ |
||
| 39 | 39 | public function testEndsWithEmptyArray() |
| 40 | 40 | { |
| 41 | 41 | $suffix = []; |
| 42 | - $list = [1, 2 ,3, 4]; |
|
| 42 | + $list = [1, 2, 3, 4]; |
|
| 43 | 43 | $actual = endsWith($suffix)($list); |
| 44 | 44 | $this->assertTrue($actual); |
| 45 | 45 | } |
| 46 | 46 | public function testEndsWithValidArray() |
| 47 | 47 | { |
| 48 | 48 | $suffix = [4]; |
| 49 | - $list = [1, 2 ,3, 4]; |
|
| 49 | + $list = [1, 2, 3, 4]; |
|
| 50 | 50 | $actual = endsWith($suffix)($list); |
| 51 | 51 | $this->assertTrue($actual); |
| 52 | 52 | } |
| 53 | 53 | public function testEndsWithInvalidArray() |
| 54 | 54 | { |
| 55 | 55 | $suffix = [5]; |
| 56 | - $list = [1, 2 ,3, 4]; |
|
| 56 | + $list = [1, 2, 3, 4]; |
|
| 57 | 57 | $actual = endsWith($suffix)($list); |
| 58 | 58 | $this->assertFalse($actual); |
| 59 | 59 | } |
@@ -7,16 +7,16 @@ |
||
| 7 | 7 | class ArrayForEachTest extends TestCase |
| 8 | 8 | { |
| 9 | 9 | |
| 10 | - public function testForEach() |
|
| 11 | - { |
|
| 10 | + public function testForEach() |
|
| 11 | + { |
|
| 12 | 12 | $list = [1, 2, 3]; |
| 13 | 13 | $mockFn = $this->createPartialMock(\stdClass::class, ['__invoke']); |
| 14 | 14 | $mockFn->expects($this->exactly(3)) |
| 15 | - ->method('__invoke') |
|
| 16 | - ->with($this->callback(function ($it) use ($list) { |
|
| 15 | + ->method('__invoke') |
|
| 16 | + ->with($this->callback(function ($it) use ($list) { |
|
| 17 | 17 | return in_array($it, $list); |
| 18 | - })); |
|
| 18 | + })); |
|
| 19 | 19 | |
| 20 | 20 | arrayForEach($mockFn)($list); |
| 21 | - } |
|
| 21 | + } |
|
| 22 | 22 | } |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | $mockFn = $this->createPartialMock(\stdClass::class, ['__invoke']); |
| 14 | 14 | $mockFn->expects($this->exactly(3)) |
| 15 | 15 | ->method('__invoke') |
| 16 | - ->with($this->callback(function ($it) use ($list) { |
|
| 16 | + ->with($this->callback(function($it) use ($list) { |
|
| 17 | 17 | return in_array($it, $list); |
| 18 | 18 | })); |
| 19 | 19 | |
@@ -6,11 +6,11 @@ |
||
| 6 | 6 | |
| 7 | 7 | class IncTest extends TestCase |
| 8 | 8 | { |
| 9 | - public function testInc() |
|
| 10 | - { |
|
| 9 | + public function testInc() |
|
| 10 | + { |
|
| 11 | 11 | $value = 10; |
| 12 | 12 | $expect = 11; |
| 13 | 13 | $actual = inc()(10); |
| 14 | 14 | $this->assertEquals($expect, $actual); |
| 15 | - } |
|
| 15 | + } |
|
| 16 | 16 | } |
@@ -6,37 +6,37 @@ |
||
| 6 | 6 | |
| 7 | 7 | class IfElseTest extends TestCase |
| 8 | 8 | { |
| 9 | - public function testIfElseOnTrueCondition() |
|
| 10 | - { |
|
| 9 | + public function testIfElseOnTrueCondition() |
|
| 10 | + { |
|
| 11 | 11 | $value = 10; |
| 12 | 12 | $isEven = function ($it) { |
| 13 | - return $it % 2 === 0; |
|
| 13 | + return $it % 2 === 0; |
|
| 14 | 14 | }; |
| 15 | 15 | $powerTwo = function ($it) { |
| 16 | - return $it * $it; |
|
| 16 | + return $it * $it; |
|
| 17 | 17 | }; |
| 18 | 18 | $powerThree = function ($it) { |
| 19 | - return $it * $it * $it; |
|
| 19 | + return $it * $it * $it; |
|
| 20 | 20 | }; |
| 21 | 21 | $expect = 100; |
| 22 | 22 | $actual = ifElse($isEven)($powerTwo)($powerThree)($value); |
| 23 | 23 | $this->assertEquals($expect, $actual); |
| 24 | - } |
|
| 24 | + } |
|
| 25 | 25 | |
| 26 | - public function testIfElseOnFalseCondition() |
|
| 27 | - { |
|
| 26 | + public function testIfElseOnFalseCondition() |
|
| 27 | + { |
|
| 28 | 28 | $value = 10; |
| 29 | 29 | $isOdd = function ($it) { |
| 30 | - return $it % 2 !== 0; |
|
| 30 | + return $it % 2 !== 0; |
|
| 31 | 31 | }; |
| 32 | 32 | $powerTwo = function ($it) { |
| 33 | - return $it * $it; |
|
| 33 | + return $it * $it; |
|
| 34 | 34 | }; |
| 35 | 35 | $powerThree = function ($it) { |
| 36 | - return $it * $it * $it; |
|
| 36 | + return $it * $it * $it; |
|
| 37 | 37 | }; |
| 38 | 38 | $expect = 1000; |
| 39 | 39 | $actual = ifElse($isOdd)($powerTwo)($powerThree)($value); |
| 40 | 40 | $this->assertEquals($expect, $actual); |
| 41 | - } |
|
| 41 | + } |
|
| 42 | 42 | } |
@@ -9,13 +9,13 @@ discard block |
||
| 9 | 9 | public function testIfElseOnTrueCondition() |
| 10 | 10 | { |
| 11 | 11 | $value = 10; |
| 12 | - $isEven = function ($it) { |
|
| 12 | + $isEven = function($it) { |
|
| 13 | 13 | return $it % 2 === 0; |
| 14 | 14 | }; |
| 15 | - $powerTwo = function ($it) { |
|
| 15 | + $powerTwo = function($it) { |
|
| 16 | 16 | return $it * $it; |
| 17 | 17 | }; |
| 18 | - $powerThree = function ($it) { |
|
| 18 | + $powerThree = function($it) { |
|
| 19 | 19 | return $it * $it * $it; |
| 20 | 20 | }; |
| 21 | 21 | $expect = 100; |
@@ -26,13 +26,13 @@ discard block |
||
| 26 | 26 | public function testIfElseOnFalseCondition() |
| 27 | 27 | { |
| 28 | 28 | $value = 10; |
| 29 | - $isOdd = function ($it) { |
|
| 29 | + $isOdd = function($it) { |
|
| 30 | 30 | return $it % 2 !== 0; |
| 31 | 31 | }; |
| 32 | - $powerTwo = function ($it) { |
|
| 32 | + $powerTwo = function($it) { |
|
| 33 | 33 | return $it * $it; |
| 34 | 34 | }; |
| 35 | - $powerThree = function ($it) { |
|
| 35 | + $powerThree = function($it) { |
|
| 36 | 36 | return $it * $it * $it; |
| 37 | 37 | }; |
| 38 | 38 | $expect = 1000; |
@@ -9,12 +9,12 @@ discard block |
||
| 9 | 9 | */ |
| 10 | 10 | function add() |
| 11 | 11 | { |
| 12 | - $add = function ($firstValue, $secondValue) { |
|
| 12 | + $add = function ($firstValue, $secondValue) { |
|
| 13 | 13 | return $firstValue + $secondValue; |
| 14 | - }; |
|
| 15 | - $arguments = func_get_args(); |
|
| 16 | - $curried = curryN($add, 2); |
|
| 17 | - return call_user_func_array($curried, $arguments); |
|
| 14 | + }; |
|
| 15 | + $arguments = func_get_args(); |
|
| 16 | + $curried = curryN($add, 2); |
|
| 17 | + return call_user_func_array($curried, $arguments); |
|
| 18 | 18 | } |
| 19 | 19 | |
| 20 | 20 | /** |
@@ -25,12 +25,12 @@ discard block |
||
| 25 | 25 | */ |
| 26 | 26 | function divide() |
| 27 | 27 | { |
| 28 | - $divide = function ($firstValue, $secondValue) { |
|
| 28 | + $divide = function ($firstValue, $secondValue) { |
|
| 29 | 29 | return $firstValue / $secondValue; |
| 30 | - }; |
|
| 31 | - $arguments = func_get_args(); |
|
| 32 | - $curried = curryN($divide, 2); |
|
| 33 | - return call_user_func_array($curried, $arguments); |
|
| 30 | + }; |
|
| 31 | + $arguments = func_get_args(); |
|
| 32 | + $curried = curryN($divide, 2); |
|
| 33 | + return call_user_func_array($curried, $arguments); |
|
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | /** |
@@ -39,12 +39,12 @@ discard block |
||
| 39 | 39 | */ |
| 40 | 40 | function inc() |
| 41 | 41 | { |
| 42 | - $inc = function ($value) { |
|
| 42 | + $inc = function ($value) { |
|
| 43 | 43 | return $value + 1; |
| 44 | - }; |
|
| 45 | - $arguments = func_get_args(); |
|
| 46 | - $curried = curryN($inc, 1); |
|
| 47 | - return call_user_func_array($curried, $arguments); |
|
| 44 | + }; |
|
| 45 | + $arguments = func_get_args(); |
|
| 46 | + $curried = curryN($inc, 1); |
|
| 47 | + return call_user_func_array($curried, $arguments); |
|
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | /** |
@@ -55,12 +55,12 @@ discard block |
||
| 55 | 55 | */ |
| 56 | 56 | function multiply() |
| 57 | 57 | { |
| 58 | - $multiply = function ($firstValue, $secondValue) { |
|
| 58 | + $multiply = function ($firstValue, $secondValue) { |
|
| 59 | 59 | return $firstValue * $secondValue; |
| 60 | - }; |
|
| 61 | - $arguments = func_get_args(); |
|
| 62 | - $curried = curryN($multiply, 2); |
|
| 63 | - return call_user_func_array($curried, $arguments); |
|
| 60 | + }; |
|
| 61 | + $arguments = func_get_args(); |
|
| 62 | + $curried = curryN($multiply, 2); |
|
| 63 | + return call_user_func_array($curried, $arguments); |
|
| 64 | 64 | } |
| 65 | 65 | |
| 66 | 66 | /** |
@@ -71,10 +71,10 @@ discard block |
||
| 71 | 71 | */ |
| 72 | 72 | function subtract() |
| 73 | 73 | { |
| 74 | - $subtract = function ($firstValue, $secondValue) { |
|
| 74 | + $subtract = function ($firstValue, $secondValue) { |
|
| 75 | 75 | return $firstValue - $secondValue; |
| 76 | - }; |
|
| 77 | - $arguments = func_get_args(); |
|
| 78 | - $curried = curryN($subtract, 2); |
|
| 79 | - return call_user_func_array($curried, $arguments); |
|
| 76 | + }; |
|
| 77 | + $arguments = func_get_args(); |
|
| 78 | + $curried = curryN($subtract, 2); |
|
| 79 | + return call_user_func_array($curried, $arguments); |
|
| 80 | 80 | } |
@@ -9,7 +9,7 @@ discard block |
||
| 9 | 9 | */ |
| 10 | 10 | function add() |
| 11 | 11 | { |
| 12 | - $add = function ($firstValue, $secondValue) { |
|
| 12 | + $add = function($firstValue, $secondValue) { |
|
| 13 | 13 | return $firstValue + $secondValue; |
| 14 | 14 | }; |
| 15 | 15 | $arguments = func_get_args(); |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | */ |
| 26 | 26 | function divide() |
| 27 | 27 | { |
| 28 | - $divide = function ($firstValue, $secondValue) { |
|
| 28 | + $divide = function($firstValue, $secondValue) { |
|
| 29 | 29 | return $firstValue / $secondValue; |
| 30 | 30 | }; |
| 31 | 31 | $arguments = func_get_args(); |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | */ |
| 40 | 40 | function inc() |
| 41 | 41 | { |
| 42 | - $inc = function ($value) { |
|
| 42 | + $inc = function($value) { |
|
| 43 | 43 | return $value + 1; |
| 44 | 44 | }; |
| 45 | 45 | $arguments = func_get_args(); |
@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | */ |
| 56 | 56 | function multiply() |
| 57 | 57 | { |
| 58 | - $multiply = function ($firstValue, $secondValue) { |
|
| 58 | + $multiply = function($firstValue, $secondValue) { |
|
| 59 | 59 | return $firstValue * $secondValue; |
| 60 | 60 | }; |
| 61 | 61 | $arguments = func_get_args(); |
@@ -71,7 +71,7 @@ discard block |
||
| 71 | 71 | */ |
| 72 | 72 | function subtract() |
| 73 | 73 | { |
| 74 | - $subtract = function ($firstValue, $secondValue) { |
|
| 74 | + $subtract = function($firstValue, $secondValue) { |
|
| 75 | 75 | return $firstValue - $secondValue; |
| 76 | 76 | }; |
| 77 | 77 | $arguments = func_get_args(); |
@@ -3,12 +3,12 @@ discard block |
||
| 3 | 3 | |
| 4 | 4 | function defaultTo() |
| 5 | 5 | { |
| 6 | - $defaultTo = function ($defaultValue, $value) { |
|
| 6 | + $defaultTo = function ($defaultValue, $value) { |
|
| 7 | 7 | return $value ? $value : $defaultValue; |
| 8 | - }; |
|
| 9 | - $arguments = func_get_args(); |
|
| 10 | - $curried = curryN($defaultTo, 2); |
|
| 11 | - return call_user_func_array($curried, $arguments); |
|
| 8 | + }; |
|
| 9 | + $arguments = func_get_args(); |
|
| 10 | + $curried = curryN($defaultTo, 2); |
|
| 11 | + return call_user_func_array($curried, $arguments); |
|
| 12 | 12 | } |
| 13 | 13 | |
| 14 | 14 | /** |
@@ -20,16 +20,16 @@ discard block |
||
| 20 | 20 | */ |
| 21 | 21 | function ifElse() |
| 22 | 22 | { |
| 23 | - $ifElse = function (callable $condition, callable $onTrue, callable $onFalse) { |
|
| 23 | + $ifElse = function (callable $condition, callable $onTrue, callable $onFalse) { |
|
| 24 | 24 | return function () use ($condition, $onTrue, $onFalse) { |
| 25 | - $arguments = func_get_args(); |
|
| 26 | - if (call_user_func_array($condition, $arguments)) { |
|
| 25 | + $arguments = func_get_args(); |
|
| 26 | + if (call_user_func_array($condition, $arguments)) { |
|
| 27 | 27 | return call_user_func_array($onTrue, $arguments); |
| 28 | - } |
|
| 29 | - return call_user_func_array($onFalse, $arguments); |
|
| 28 | + } |
|
| 29 | + return call_user_func_array($onFalse, $arguments); |
|
| 30 | + }; |
|
| 30 | 31 | }; |
| 31 | - }; |
|
| 32 | - $arguments = func_get_args(); |
|
| 33 | - $curried = curryN($ifElse, 3); |
|
| 34 | - return call_user_func_array($curried, $arguments); |
|
| 32 | + $arguments = func_get_args(); |
|
| 33 | + $curried = curryN($ifElse, 3); |
|
| 34 | + return call_user_func_array($curried, $arguments); |
|
| 35 | 35 | } |
@@ -3,7 +3,7 @@ discard block |
||
| 3 | 3 | |
| 4 | 4 | function defaultTo() |
| 5 | 5 | { |
| 6 | - $defaultTo = function ($defaultValue, $value) { |
|
| 6 | + $defaultTo = function($defaultValue, $value) { |
|
| 7 | 7 | return $value ? $value : $defaultValue; |
| 8 | 8 | }; |
| 9 | 9 | $arguments = func_get_args(); |
@@ -20,8 +20,8 @@ discard block |
||
| 20 | 20 | */ |
| 21 | 21 | function ifElse() |
| 22 | 22 | { |
| 23 | - $ifElse = function (callable $condition, callable $onTrue, callable $onFalse) { |
|
| 24 | - return function () use ($condition, $onTrue, $onFalse) { |
|
| 23 | + $ifElse = function(callable $condition, callable $onTrue, callable $onFalse) { |
|
| 24 | + return function() use ($condition, $onTrue, $onFalse) { |
|
| 25 | 25 | $arguments = func_get_args(); |
| 26 | 26 | if (call_user_func_array($condition, $arguments)) { |
| 27 | 27 | return call_user_func_array($onTrue, $arguments); |
@@ -6,16 +6,16 @@ |
||
| 6 | 6 | |
| 7 | 7 | class GroupByTest extends TestCase |
| 8 | 8 | { |
| 9 | - public function testGroupByIsEven() |
|
| 10 | - { |
|
| 9 | + public function testGroupByIsEven() |
|
| 10 | + { |
|
| 11 | 11 | $evenOrOdd = function ($value) { |
| 12 | - return $value % 2 === 0 ? 'even' : 'odd'; |
|
| 12 | + return $value % 2 === 0 ? 'even' : 'odd'; |
|
| 13 | 13 | }; |
| 14 | 14 | $expected = [ |
| 15 | - 'even' => [2, 4, 6], |
|
| 16 | - 'odd' => [1, 3, 5] |
|
| 15 | + 'even' => [2, 4, 6], |
|
| 16 | + 'odd' => [1, 3, 5] |
|
| 17 | 17 | ]; |
| 18 | 18 | $actual = groupBy($evenOrOdd)([1, 2, 3, 4, 5, 6]); |
| 19 | 19 | $this->assertEquals($expected, $actual); |
| 20 | - } |
|
| 20 | + } |
|
| 21 | 21 | } |
@@ -8,7 +8,7 @@ |
||
| 8 | 8 | { |
| 9 | 9 | public function testGroupByIsEven() |
| 10 | 10 | { |
| 11 | - $evenOrOdd = function ($value) { |
|
| 11 | + $evenOrOdd = function($value) { |
|
| 12 | 12 | return $value % 2 === 0 ? 'even' : 'odd'; |
| 13 | 13 | }; |
| 14 | 14 | $expected = [ |