Passed
Pull Request — master (#1)
by Lloric Mayuga
01:47
created
database/migrations/create_meta_tags_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,14 +13,14 @@
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::create('meta_tags', function (Blueprint $table) {
16
+        Schema::create('meta_tags', function(Blueprint $table) {
17 17
             $table->increments('id');
18 18
 
19 19
             // url path - without domain
20 20
             $table->string('path')->nullable();
21 21
 
22 22
             // metatagable: node, term,...
23
-            $table->nullableMorphs('metatagable','metatagable_morphs');
23
+            $table->nullableMorphs('metatagable', 'metatagable_morphs');
24 24
 
25 25
             // Meta-tags
26 26
             $table->string('title')->nullable();
Please login to merge, or discard this patch.