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

13 lines
289 B
PHP
Raw Normal View History

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