Skip to content

Commit 5482eef

Browse files
authored
Fix missing use statement (alexdebril#383)
1 parent 7f9e3c7 commit 5482eef

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bin/feedio

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<?php
33

44
use FeedIo\FeedIo;
5+
use FeedIo\Factory;
56

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

22-
$feedIo = \FeedIo\Factory::create()->getFeedIo();
23+
$feedIo = Factory::create()->getFeedIo();
2324
switch($argv[1]) {
2425
case 'discover':
2526
discover($feedIo, $argv[2]);

0 commit comments

Comments
 (0)