Completed
Push — develop ( e66bf4...bd65fa )
by Dan
31:22 queued 11:28
created
tests/Util/DebugUtilTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -109,7 +109,7 @@
 block discarded – undo
109 109
 
110 110
     public function testDumpResetsXdebugVarDisplayMaxDepthSettingToOriginal()
111 111
     {
112
-        if (!extension_loaded('xdebug')) {
112
+        if ( ! extension_loaded('xdebug')) {
113 113
             $this->markTestSkipped('XDebug extension is not loaded/installed');
114 114
         }
115 115
 
Please login to merge, or discard this patch.
tests/Util/ArrayUtil/MergeRecursiveDistinctTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
     {
64 64
         $assertion = array();
65 65
         $arguments = array();
66
-        for ($x=1; $x<=100; $x++) {
66
+        for ($x = 1; $x <= 100; $x++) {
67 67
             $arguments[] = array('test '.$x);
68 68
             $assertion[] = 'test '.$x;
69 69
         }
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 
110 110
         $this->assertEquals(
111 111
             array(
112
-                'replace'=>array('one','two'),
112
+                'replace'=>array('one', 'two'),
113 113
             ),
114 114
             ArrayUtil::mergeRecursiveDistinct($array1, $array2)
115 115
         );
Please login to merge, or discard this patch.