Completed
Pull Request — master (#13)
by Siwapun
04:10
created
test/IfElseTest.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -9,13 +9,13 @@  discard block
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/math.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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();
Please login to merge, or discard this patch.
src/logic.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.