aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Import/ImportInterface.php
blob: f07a120cf5cd8b7262e8985f08818c8e470771b1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

namespace Wallabag\ImportBundle\Import;

interface ImportInterface
{
    public function getName();
    public function getDescription();
    public function oAuthRequest($redirectUri, $callbackUri);
    public function oAuthAuthorize();
    public function import($accessToken);
}