* Add privacy link to setup page * Italics * Tests for invoice actions * Fixes for autoloading
10 lines
174 B
PHP
10 lines
174 B
PHP
<?php
|
|
|
|
namespace App\Libraries\OAuth\Providers;
|
|
|
|
interface ProviderInterface
|
|
{
|
|
public function getTokenResponse($token);
|
|
|
|
public function harvestEmail($response);
|
|
}
|