]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/ImportBundle/Import/ImportInterface.php
refactor pocket import
[github/wallabag/wallabag.git] / src / Wallabag / ImportBundle / Import / ImportInterface.php
1 <?php
2
3 namespace Wallabag\ImportBundle\Import;
4
5 interface ImportInterface
6 {
7 public function oAuthRequest($redirectUri, $callbackUri);
8 public function oAuthAuthorize();
9 public function import($accessToken);
10 }