]> git.immae.eu Git - github/wallabag/wallabag.git/blob - src/Wallabag/ImportBundle/Import/ImportInterface.php
create ImportController to list importers
[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 getName();
8 public function getDescription();
9 public function oAuthRequest($redirectUri, $callbackUri);
10 public function oAuthAuthorize();
11 public function import($accessToken);
12 }