@@ -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 |
@@ -21,7 +21,7 @@ |
||
21 | 21 | /** |
22 | 22 | * Ensure the timezone is set; |
23 | 23 | */ |
24 | -if (version_compare(phpversion(),'5.3.0') >= 0) { |
|
24 | +if (version_compare(phpversion(), '5.3.0') >= 0) { |
|
25 | 25 | $tz = @ini_get('date.timezone'); |
26 | 26 | if (empty($tz)) { |
27 | 27 | date_default_timezone_set(@date_default_timezone_get()); |