aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Command
diff options
context:
space:
mode:
authorLaurent <laurent@ghirardotti.fr>2016-11-01 18:33:32 +0800
committerLaurent <laurent@ghirardotti.fr>2016-11-01 18:33:32 +0800
commit995d909d0f10c9cbdafb92fc10445c959b476740 (patch)
treeb2d12ebcc24334d28e00fdd799586539028c9996 /src/Wallabag/ImportBundle/Command
parente52ee565f7df9566d53577cd127088141641619c (diff)
downloadwallabag-995d909d0f10c9cbdafb92fc10445c959b476740.tar.gz
wallabag-995d909d0f10c9cbdafb92fc10445c959b476740.tar.zst
wallabag-995d909d0f10c9cbdafb92fc10445c959b476740.zip
Add Instapaper to CLI import
Diffstat (limited to 'src/Wallabag/ImportBundle/Command')
-rw-r--r--src/Wallabag/ImportBundle/Command/ImportCommand.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/Wallabag/ImportBundle/Command/ImportCommand.php b/src/Wallabag/ImportBundle/Command/ImportCommand.php
index 1df38295..d1325338 100644
--- a/src/Wallabag/ImportBundle/Command/ImportCommand.php
+++ b/src/Wallabag/ImportBundle/Command/ImportCommand.php
@@ -50,6 +50,9 @@ class ImportCommand extends ContainerAwareCommand
50 case 'chrome': 50 case 'chrome':
51 $wallabag = $this->getContainer()->get('wallabag_import.chrome.import'); 51 $wallabag = $this->getContainer()->get('wallabag_import.chrome.import');
52 break; 52 break;
53 case 'instapaper':
54 $wallabag = $this->getContainer()->get('wallabag_import.instapaper.import');
55 break;
53 case 'v1': 56 case 'v1':
54 default: 57 default:
55 $wallabag = $this->getContainer()->get('wallabag_import.wallabag_v1.import'); 58 $wallabag = $this->getContainer()->get('wallabag_import.wallabag_v1.import');