Completed
Push — master ( acb1bd...aa3a2b )
by Rafael
02:57
created
tests/ArrayDebuggerTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
 
16 16
     $array = new ArrayDebugger($this->base);
17 17
 
18
-    $array->setLogger(function($retorno)  {
18
+    $array->setLogger(function($retorno) {
19 19
       $this->assertEquals($retorno['type'], ArrayDebugger::TYPE_GET);
20 20
     });
21 21
 
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 
42 42
     $array = new ArrayDebugger($this->base);
43 43
 
44
-    $array->setLogger(function($retorno)  {
44
+    $array->setLogger(function($retorno) {
45 45
       $this->assertEquals($retorno['type'], ArrayDebugger::TYPE_SET);
46 46
     });
47 47
 
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 
68 68
     $array = new ArrayDebugger($this->base);
69 69
 
70
-    $array->setLogger(function($retorno)  {
70
+    $array->setLogger(function($retorno) {
71 71
       $this->assertEquals($retorno['type'], ArrayDebugger::TYPE_EXISTS);
72 72
     });
73 73
 
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 
96 96
     $array = new ArrayDebugger($this->base);
97 97
 
98
-    $array->setLogger(function($retorno)  {
98
+    $array->setLogger(function($retorno) {
99 99
       $this->assertEquals($retorno['type'], ArrayDebugger::TYPE_UNSET);
100 100
     });
101 101
 
Please login to merge, or discard this patch.