Passed
Push — master ( 70386b...ef0f76 )
by Josh
02:05
created
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.
src/Application.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
bin/blend.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
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());
Please login to merge, or discard this patch.