Skip to content

Commit

Permalink
Style patch.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Sik committed Nov 19, 2015
1 parent 4bd0b5e commit 3050780
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
1 change: 0 additions & 1 deletion api/app/Models/Meta.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,4 @@ public function metaableModel()
{
return $this->morphTo();
}

}
2 changes: 1 addition & 1 deletion api/database/factories/MetaMocks.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
'meta_name' => $faker->boolean(50) ? $faker->randomElement(['name','description','keyword','canonical']) : $faker->word,
'meta_content' => $faker->slug,
];
});
});
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
<?php

/*
* This file is part of the Spira framework.
*
* @link https://github.com/spira/spira
*
* For the full copyright and license information, please view the LICENSE file that was distributed with this source code.
*/

use App\Models\Meta;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
Expand Down
1 change: 1 addition & 0 deletions api/tests/integration/ArticleTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -686,6 +686,7 @@ public function testShouldNotPostCommentWithoutAuthedUserForArticle()
}

// @Todo: Relationship is now polymorphic which does not support revisionable out of the box

public function testShouldLogPutMetas()
{
$this->markTestSkipped(
Expand Down

0 comments on commit 3050780

Please sign in to comment.