Skip to content

Commit

Permalink
Style fix (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyholm committed May 31, 2016
1 parent 0594bbc commit c6288ea
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion TaggablePSR6PoolAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,9 @@ protected function removeListItem($name, $key)
$list = [];
}

$list = array_filter($list, function ($value) use ($key) { return $value !== $key; });
$list = array_filter($list, function ($value) use ($key) {
return $value !== $key;
});

$listItem->set($list);
$this->tagStorePool->save($listItem);
Expand Down

0 comments on commit c6288ea

Please sign in to comment.