Skip to content

Commit

Permalink
Fix missing use statement (#383)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdebril authored Feb 1, 2022
1 parent 7f9e3c7 commit 5482eef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bin/feedio
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<?php

use FeedIo\FeedIo;
use FeedIo\Factory;

$file = __DIR__.'/../vendor/autoload.php';
if ( file_exists($file) ) {
Expand All @@ -19,7 +20,7 @@ function main($argc, $argv)
exit;
}

$feedIo = \FeedIo\Factory::create()->getFeedIo();
$feedIo = Factory::create()->getFeedIo();
switch($argv[1]) {
case 'discover':
discover($feedIo, $argv[2]);
Expand Down

0 comments on commit 5482eef

Please sign in to comment.