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

10 lines
169 B
PHP
Raw Permalink Normal View History

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