refactor pocket import

This commit is contained in:
Nicolas Lœuillet
2015-10-23 14:01:27 +02:00
committed by Jeremy Benoist
parent 1f4408de9e
commit ff7b031d57
7 changed files with 202 additions and 105 deletions

View File

@ -0,0 +1,10 @@
<?php
namespace Wallabag\ImportBundle\Import;
interface ImportInterface
{
public function oAuthRequest($redirectUri, $callbackUri);
public function oAuthAuthorize();
public function import($accessToken);
}