invoiceninja/app/Libraries/OAuth/Providers/ProviderInterface.php

11 lines
174 B
PHP
Raw Normal View History

<?php
namespace App\Libraries\OAuth\Providers;
interface ProviderInterface
{
public function getTokenResponse($token);
public function harvestEmail($response);
}