Skip to content

Commit

Permalink
nitpick
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Mar 6, 2016
1 parent ac0aff8 commit 7377f64
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/Feed.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,7 @@ public function __construct(array $feedConfiguration)

public function getFeedResponse() : Response
{
$feedContent = $this->getFeedContent($this->feedConfiguration);

return response($feedContent, 200, ['Content-Type' => 'application/xml;charset=UTF-8']);
return response($this->getFeedContent(), 200, ['Content-Type' => 'application/xml;charset=UTF-8']);
}

public function getFeedContent() : string
Expand Down

0 comments on commit 7377f64

Please sign in to comment.