mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 13:42:49 +01:00
8cffccb3bc
* Add privacy link to setup page * Italics * Tests for invoice actions * Fixes for autoloading
11 lines
174 B
PHP
11 lines
174 B
PHP
<?php
|
|
|
|
namespace App\Libraries\OAuth\Providers;
|
|
|
|
interface ProviderInterface
|
|
{
|
|
public function getTokenResponse($token);
|
|
|
|
public function harvestEmail($response);
|
|
}
|