Skip to content

Commit

Permalink
Applied fixes from StyleCI (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored Aug 24, 2016
1 parent 3adba2b commit e64eae8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Feed.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Feed
public function __construct(array $feedConfiguration)
{
$this->feedConfiguration = $feedConfiguration;
if (!str_contains($feedConfiguration['items'], '@')) {
if (! str_contains($feedConfiguration['items'], '@')) {
throw InvalidConfiguration::delimiterNotPresent($feedConfiguration['items']);
}
}
Expand All @@ -37,7 +37,7 @@ public function getFeedContent()

protected function getLastUpdatedDate(Collection $items)
{
if (!count($items)) {
if (! count($items)) {
return '';
}

Expand Down

0 comments on commit e64eae8

Please sign in to comment.