diff options
Diffstat (limited to 'src/Wallabag/ImportBundle')
-rw-r--r-- | src/Wallabag/ImportBundle/Command/ImportCommand.php | 5 | ||||
-rw-r--r-- | src/Wallabag/ImportBundle/Consumer/AbstractConsumer.php | 1 |
2 files changed, 1 insertions, 5 deletions
diff --git a/src/Wallabag/ImportBundle/Command/ImportCommand.php b/src/Wallabag/ImportBundle/Command/ImportCommand.php index 13f3dcb9..e423ffae 100644 --- a/src/Wallabag/ImportBundle/Command/ImportCommand.php +++ b/src/Wallabag/ImportBundle/Command/ImportCommand.php | |||
@@ -56,13 +56,8 @@ class ImportCommand extends ContainerAwareCommand | |||
56 | case 'instapaper': | 56 | case 'instapaper': |
57 | $import = $this->getContainer()->get('wallabag_import.instapaper.import'); | 57 | $import = $this->getContainer()->get('wallabag_import.instapaper.import'); |
58 | break; | 58 | break; |
59 | case 'instapaper': | ||
60 | $wallabag = $this->getContainer()->get('wallabag_import.instapaper.import'); | ||
61 | break; | ||
62 | case 'v1': | ||
63 | default: | 59 | default: |
64 | $import = $this->getContainer()->get('wallabag_import.wallabag_v1.import'); | 60 | $import = $this->getContainer()->get('wallabag_import.wallabag_v1.import'); |
65 | break; | ||
66 | } | 61 | } |
67 | 62 | ||
68 | $import->setMarkAsRead($input->getOption('markAsRead')); | 63 | $import->setMarkAsRead($input->getOption('markAsRead')); |
diff --git a/src/Wallabag/ImportBundle/Consumer/AbstractConsumer.php b/src/Wallabag/ImportBundle/Consumer/AbstractConsumer.php index aa7ff914..fc175f67 100644 --- a/src/Wallabag/ImportBundle/Consumer/AbstractConsumer.php +++ b/src/Wallabag/ImportBundle/Consumer/AbstractConsumer.php | |||
@@ -17,6 +17,7 @@ abstract class AbstractConsumer | |||
17 | protected $em; | 17 | protected $em; |
18 | protected $userRepository; | 18 | protected $userRepository; |
19 | protected $import; | 19 | protected $import; |
20 | protected $eventDispatcher; | ||
20 | protected $logger; | 21 | protected $logger; |
21 | 22 | ||
22 | public function __construct(EntityManager $em, UserRepository $userRepository, AbstractImport $import, EventDispatcherInterface $eventDispatcher, LoggerInterface $logger = null) | 23 | public function __construct(EntityManager $em, UserRepository $userRepository, AbstractImport $import, EventDispatcherInterface $eventDispatcher, LoggerInterface $logger = null) |