mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 14:42:42 +01:00
1e323a5770
* Working on OAuth * Fixes for gmail transport * Working on oauth
13 lines
217 B
PHP
13 lines
217 B
PHP
<?php
|
|
|
|
namespace App\Libraries\OAuth\Providers;
|
|
|
|
interface ProviderInterface
|
|
{
|
|
public function getTokenResponse($token);
|
|
|
|
public function harvestEmail($response);
|
|
|
|
public function havestName($response);
|
|
}
|