mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-11-10 07:47:37 -05:00
* 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);
|
|
}
|