Completed
Push — master ( c769c6...2aa223 )
by Ivannis Suárez
03:02
created
Tests/Units/MultiComparatorTests.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
      */
26 26
     protected function defaultConstructorArguments()
27 27
     {
28
-        return array(new Comparator(), function ($a, $b) {
28
+        return array(new Comparator(), function($a, $b) {
29 29
             return 1;
30 30
         });
31 31
     }
Please login to merge, or discard this patch.
Tests/Units/ComparatorTests.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     public function testBy()
43 43
     {
44 44
         $this
45
-        ->given($selector = function ($value) {
45
+        ->given($selector = function($value) {
46 46
             return $value['foo'];
47 47
         })
48 48
         /* @var \Cubiche\Core\Comparable\SelectorComparator $comparator */
Please login to merge, or discard this patch.
Tests/Units/CallbackComparatorTests.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      */
24 24
     protected function defaultConstructorArguments()
25 25
     {
26
-        return array(function () {
26
+        return array(function() {
27 27
             return -1;
28 28
         });
29 29
     }
Please login to merge, or discard this patch.
Tests/Units/SelectorComparatorTests.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
     protected function defaultConstructorArguments()
26 26
     {
27 27
         return array(
28
-            function ($value) {
28
+            function($value) {
29 29
                 return $value['foo'];
30 30
             },
31 31
             Direction::ASC(),
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      */
50 50
     protected function newDefaultOtherwiseComparator()
51 51
     {
52
-        return function ($value) {
52
+        return function($value) {
53 53
             return $value['bar'];
54 54
         };
55 55
     }
Please login to merge, or discard this patch.