mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
10 lines
169 B
PHP
10 lines
169 B
PHP
<?php namespace App\Ninja\OAuth\Providers;
|
|
|
|
interface ProviderInterface
|
|
{
|
|
public function getTokenResponse($token);
|
|
|
|
public function harvestEmail($response);
|
|
|
|
}
|