Completed
Push — devel ( f52b6b...915f69 )
by Philippe
02:30
created
src/NodeTrait.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
- * NodeTrait.php
4
- *
5
- * PHP version 5.6+
6
- *
7
- * @author Philippe Gaultier <[email protected]>
8
- * @copyright 2010-2016 Philippe Gaultier
9
- * @license http://www.sweelix.net/license license
10
- * @version XXX
11
- * @link http://www.sweelix.net
12
- * @package sweelix\tree
13
- */
3
+     * NodeTrait.php
4
+     *
5
+     * PHP version 5.6+
6
+     *
7
+     * @author Philippe Gaultier <[email protected]>
8
+     * @copyright 2010-2016 Philippe Gaultier
9
+     * @license http://www.sweelix.net/license license
10
+     * @version XXX
11
+     * @link http://www.sweelix.net
12
+     * @package sweelix\tree
13
+     */
14 14
 
15 15
 namespace sweelix\tree;
16 16
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -130,7 +130,7 @@
 block discarded – undo
130 130
     {
131 131
         // cannot move into self tree
132 132
         $status = $this->canMove($fromPath, $toPath);
133
-        if($status === true) {
133
+        if ($status === true) {
134 134
             $fromMatrix = Helper::convertPathToMatrix($fromPath);
135 135
             $toMatrix = Helper::convertPathToMatrix($toPath);
136 136
             $moveMatrix = Helper::buildMoveMatrix($fromMatrix, $toMatrix, $bump);
Please login to merge, or discard this patch.
src/Helper.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Helper.php
4
- *
5
- * PHP version 5.4+
6
- *
7
- * @author pgaultier
8
- * @copyright 2010-2016 Ibitux
9
- * @license http://www.ibitux.com/license license
10
- * @version XXX
11
- * @link http://www.ibitux.com
12
- */
3
+     * Helper.php
4
+     *
5
+     * PHP version 5.4+
6
+     *
7
+     * @author pgaultier
8
+     * @copyright 2010-2016 Ibitux
9
+     * @license http://www.ibitux.com/license license
10
+     * @version XXX
11
+     * @link http://www.ibitux.com
12
+     */
13 13
 
14 14
 namespace sweelix\tree;
15 15
 
Please login to merge, or discard this patch.