diff --git a/src/Feed.php b/src/Feed.php index c2bd625..507d60c 100644 --- a/src/Feed.php +++ b/src/Feed.php @@ -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']); } } @@ -37,7 +37,7 @@ public function getFeedContent() protected function getLastUpdatedDate(Collection $items) { - if (!count($items)) { + if (! count($items)) { return ''; }