Skip to content

Commit

Permalink
Applying style patch.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy Sik committed Dec 22, 2015
1 parent 56e18c8 commit 696ab45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/app/Models/Meta.php
Expand Up @@ -34,7 +34,7 @@ public static function getValidationRules($entityId = null, array $requestEntity
'meta_id' => 'uuid',
'meta_name' => 'required|string',
'meta_content' => 'string',
'metaable_id' => 'unique:metas,metaable_id,'.$entityId.',meta_id,meta_name,'.$requestEntity['meta_name']
'metaable_id' => 'unique:metas,metaable_id,'.$entityId.',meta_id,meta_name,'.$requestEntity['meta_name'],
];
}

Expand Down
2 changes: 1 addition & 1 deletion api/tests/integration/ArticleTest.php
Expand Up @@ -503,7 +503,7 @@ public function testAddMetas()
[
'meta_name' => 'barfoobar',
'meta_content' => 'barfoobarfoo',
'metaable_id' => $post->post_id
'metaable_id' => $post->post_id,
]
)->transformed();

Expand Down

0 comments on commit 696ab45

Please sign in to comment.