1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 20:22:42 +01:00
invoiceninja/app/Ninja/OAuth/Providers/ProviderInterface.php
David Bomba 9ff1817c1c Google Auth - Authenticate with backend server (API) (#1405)
* Google OAuth - Authentication with a backend server
2017-03-31 00:01:42 +11:00

10 lines
169 B
PHP

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