Apply fixes from StyleCI

This commit is contained in:
Jonny Barnes 2017-10-13 19:50:22 +00:00 committed by StyleCI Bot
parent 9336b358de
commit dba4c14e5c
3 changed files with 2 additions and 3 deletions

View file

@ -44,7 +44,7 @@ class BookmarkService
'content' => $content,
]);
foreach((array) $categories as $category) {
foreach ((array) $categories as $category) {
$tag = Tag::firstOrCreate(['tag' => $category]);
$bookmark->tags()->save($tag);
}