Skip to content

Commit

Permalink
Fixes code syle.
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdnbrk committed Apr 30, 2018
1 parent 132ebc2 commit 6603b42
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Support/PostmarkDate.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,10 @@ public static function parse($date)
$date = new Collection(explode(' ', $date));

return new static($date->reject(function ($value) {
return self::getAbbreviatedDaysCollection()->contains(trim($value, ','));
return self::getAbbreviatedDaysCollection()->contains(trim($value, ','));
})
->take(5)
->implode(' '));
->take(5)
->implode(' '));
}

/**
Expand Down

0 comments on commit 6603b42

Please sign in to comment.