@@ -73,7 +73,7 @@ |
||
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 |
@@ -73,7 +73,7 @@ discard block |
||
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 |
||
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')) { |