Test Setup Failed
Push — master ( b1c058...f6b11e )
by Josh
02:29
created
src/Console/GenerateMigration.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
                 if (defined('MODX_CORE_PATH')) {
74 74
                     $path = MODX_CORE_PATH;
75 75
                 } else {
76
-                    $path = dirname(dirname(dirname(dirname(__DIR__)))) . DIRECTORY_SEPARATOR;
76
+                    $path = dirname(dirname(dirname(dirname(__DIR__)))).DIRECTORY_SEPARATOR;
77 77
                 }
78 78
                 $path .= 'components/';
79 79
 
Please login to merge, or discard this patch.
src/Migrations/MigrationsCreator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
      */
74 74
     public function setMigrationsPath($path, $append = false)
75 75
     {
76
-        $this->migrations_path = rtrim($path, '\/\\') . DIRECTORY_SEPARATOR;
76
+        $this->migrations_path = rtrim($path, '\/\\').DIRECTORY_SEPARATOR;
77 77
 
78 78
         if (file_exists($path) && $append) {
79 79
             if (!file_exists($path.'database')) {
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
      */
100 100
     public function setSeedsPath($path, $append = false)
101 101
     {
102
-        $this->seeds_path = rtrim($path, '\/\\') . DIRECTORY_SEPARATOR;
102
+        $this->seeds_path = rtrim($path, '\/\\').DIRECTORY_SEPARATOR;
103 103
 
104 104
         if (file_exists($path) && $append) {
105 105
             if (!file_exists($path.'database')) {
Please login to merge, or discard this patch.