Skip to content

Commit

Permalink
Merge pull request #55 from koenhoeijmakers/patch-2
Browse files Browse the repository at this point in the history
Fix broken import
  • Loading branch information
willvincent committed Nov 7, 2018
2 parents 120054c + 592aa09 commit da6037d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/FeedsFactory.php
@@ -1,7 +1,7 @@
<?php namespace willvincent\Feeds;

use Illuminate\Support\Arr;
use simplePie;
use SimplePie;

class FeedsFactory
{
Expand Down Expand Up @@ -36,7 +36,7 @@ public function __construct($config)
*/
public function make($feedUrl = [], $limit = 0, $forceFeed = false, $options = null)
{
$this->simplePie = new simplePie();
$this->simplePie = new SimplePie();
$this->configure();
$this->simplePie->set_feed_url($feedUrl);
$this->simplePie->set_item_limit($limit);
Expand Down

0 comments on commit da6037d

Please sign in to comment.