aboutsummaryrefslogblamecommitdiffhomepage
path: root/src/Wallabag/ImportBundle/Import/ImportInterface.php
blob: f07a120cf5cd8b7262e8985f08818c8e470771b1 (plain) (tree)
1
2
3
4
5
6
7
8





                                       

                                     



                                                             
<?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);
}