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

namespace Wallabag\ImportBundle\Import;

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