Files
wallabag/src/Wallabag/ImportBundle/Import/ImportInterface.php

11 lines
220 B
PHP
Raw Normal View History

2015-10-23 14:01:27 +02:00
<?php
namespace Wallabag\ImportBundle\Import;
interface ImportInterface
{
public function oAuthRequest($redirectUri, $callbackUri);
public function oAuthAuthorize();
public function import($accessToken);
}