Passed
Push — master ( 744c9e...580284 )
by Vasyl
02:16
created
database/migrations/create_meta_tags_table.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 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
Please login to merge, or discard this patch.
config/meta-tags.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
          */
23 23
         'title' => ['title' => 'Title'], // recommend max => 60
24 24
         'description' => ['title' => 'Description'], // recommend max => 300
25
-        'keywords' => ['title' => 'Keywords',], // recommend max => 300
25
+        'keywords' => ['title' => 'Keywords', ], // recommend max => 300
26 26
         
27 27
         /* -----------------------------------------------------------------
28 28
          |  Robots tag value: 'none', 'all', 'index', 'noindex', 'nofollow', 'follow',
Please login to merge, or discard this patch.