@@ -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')) { |
@@ -15,7 +15,7 @@ |
||
15 | 15 | |
16 | 16 | class Application extends ConsoleApplication |
17 | 17 | { |
18 | - protected static $logo = __DIR__ . '/art/blend.txt'; |
|
18 | + protected static $logo = __DIR__.'/art/blend.txt'; |
|
19 | 19 | |
20 | 20 | protected static $name = 'Blend Console'; |
21 | 21 |