Completed
Pull Request — master (#7)
by Siwapun
04:49 queued 03:16
created
src/relation.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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();
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 
39 39
 function lt()
40 40
 {
41
-  $lt = function ($a, $b) {
41
+  $lt = function($a, $b) {
42 42
     return $a < $b;
43 43
   };
44 44
   $arguments = func_get_args();
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 
49 49
 function lte()
50 50
 {
51
-  $lte = function ($a, $b) {
51
+  $lte = function($a, $b) {
52 52
     return $a <= $b;
53 53
   };
54 54
   $arguments = func_get_args();
Please login to merge, or discard this patch.