Completed
Push — master ( 1049b3...409d7d )
by Dan
09:12
created
tests/Util/ArrayUtil/MergeRecursiveDistinctTest.php 2 patches
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -1,16 +1,16 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of the Axstrad library.
4
- *
5
- * (c) Dan Kempster <[email protected]>
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- *
10
- * @author Dan Kempster <[email protected]>
11
- * @package Axstrad\Common
12
- * @subpackage Tests
13
- */
3
+     * This file is part of the Axstrad library.
4
+     *
5
+     * (c) Dan Kempster <[email protected]>
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     *
10
+     * @author Dan Kempster <[email protected]>
11
+     * @package Axstrad\Common
12
+     * @subpackage Tests
13
+     */
14 14
 namespace Axstrad\Common\Tests\Util\ArrayUtil;
15 15
 
16 16
 use Axstrad\Common\Util\ArrayUtil;
Please login to merge, or discard this 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.
tests/Util/StrUtil/WrapSubstrTest.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,14 +1,14 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of the Axstrad library.
4
- *
5
- * (c) Dan Kempster <[email protected]>
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- *
10
- * @copyright 2014-2015 Dan Kempster <[email protected]>
11
- */
3
+     * This file is part of the Axstrad library.
4
+     *
5
+     * (c) Dan Kempster <[email protected]>
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     *
10
+     * @copyright 2014-2015 Dan Kempster <[email protected]>
11
+     */
12 12
 namespace Axstrad\Common\Tests\Util\StrUtil;
13 13
 
14 14
 use Axstrad\Common\Util\StrUtil;
Please login to merge, or discard this patch.
tests/Util/StrUtil/EllipseTest.php 1 patch
Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,14 +1,14 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of the Axstrad library.
4
- *
5
- * (c) Dan Kempster <[email protected]>
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- *
10
- * @copyright 2014-2015 Dan Kempster <[email protected]>
11
- */
3
+     * This file is part of the Axstrad library.
4
+     *
5
+     * (c) Dan Kempster <[email protected]>
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     *
10
+     * @copyright 2014-2015 Dan Kempster <[email protected]>
11
+     */
12 12
 namespace Axstrad\Common\Tests\Util\StrUtil;
13 13
 
14 14
 use Axstrad\Common\Util\StrUtil;
Please login to merge, or discard this patch.