aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-11-01 14:26:57 +0100
committerGitHub <noreply@github.com>2016-11-01 14:26:57 +0100
commitdb1d962f7b5833ee4054d5f805a7a8b2fc95f177 (patch)
treeb2d12ebcc24334d28e00fdd799586539028c9996 /src/Wallabag
parente52ee565f7df9566d53577cd127088141641619c (diff)
parent995d909d0f10c9cbdafb92fc10445c959b476740 (diff)
downloadwallabag-db1d962f7b5833ee4054d5f805a7a8b2fc95f177.tar.gz
wallabag-db1d962f7b5833ee4054d5f805a7a8b2fc95f177.tar.zst
wallabag-db1d962f7b5833ee4054d5f805a7a8b2fc95f177.zip
Merge pull request #2524 from lologhi/instapaper-cli-import
Add Instapaper to CLI import
Diffstat (limited to 'src/Wallabag')
-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');