aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Import/ImportInterface.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas.loeuillet@smile.fr>2015-10-23 14:01:27 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-01-02 23:24:17 +0100
commitff7b031d5792f7b6fd43b508d89397775bd1433c (patch)
tree7a7c515e8d4ff774ccbdb12845d235b3e1cfbfd2 /src/Wallabag/ImportBundle/Import/ImportInterface.php
parent1f4408de9ed08f3b0fda45a93f1585c80feeb21d (diff)
downloadwallabag-ff7b031d5792f7b6fd43b508d89397775bd1433c.tar.gz
wallabag-ff7b031d5792f7b6fd43b508d89397775bd1433c.tar.zst
wallabag-ff7b031d5792f7b6fd43b508d89397775bd1433c.zip
refactor pocket import
Diffstat (limited to 'src/Wallabag/ImportBundle/Import/ImportInterface.php')
-rw-r--r--src/Wallabag/ImportBundle/Import/ImportInterface.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Wallabag/ImportBundle/Import/ImportInterface.php b/src/Wallabag/ImportBundle/Import/ImportInterface.php
new file mode 100644
index 00000000..88de3fa8
--- /dev/null
+++ b/src/Wallabag/ImportBundle/Import/ImportInterface.php
@@ -0,0 +1,10 @@
1<?php
2
3namespace Wallabag\ImportBundle\Import;
4
5interface ImportInterface
6{
7 public function oAuthRequest($redirectUri, $callbackUri);
8 public function oAuthAuthorize();
9 public function import($accessToken);
10}