Test Failed
Push — master ( 2372d4...13c287 )
by Ricardo
05:08
created
src/Commands/CacheFlushCommand.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -52,8 +52,8 @@
 block discarded – undo
52 52
      * Execute the console command for Laravel 5.5
53 53
      * this laravel version call handle intead of fire
54 54
      */
55
-     public function handle()
56
-     {
57
-         $this->fire();
58
-     }
55
+        public function handle()
56
+        {
57
+            $this->fire();
58
+        }
59 59
 }
Please login to merge, or discard this patch.
database/migrations/2013_07_25_145958_create_translations_table.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -24,11 +24,11 @@
 block discarded – undo
24 24
         });
25 25
 
26 26
         Schema::create('languages', function (Blueprint $table) {
27
-		    $table->engine = 'InnoDB';
27
+            $table->engine = 'InnoDB';
28 28
             $table->string('code')->unique();
29 29
             $table->primary('code');
30 30
 
31
-			$table->integer('position')->nullable();
31
+            $table->integer('position')->nullable();
32 32
             $table->string('name', 50);
33 33
 
34 34
             $table->timestamps();
Please login to merge, or discard this patch.