9 lines
169 B
PHP
9 lines
169 B
PHP
<?php namespace App\Ninja\OAuth\Providers;
|
|
|
|
interface ProviderInterface
|
|
{
|
|
public function getTokenResponse($token);
|
|
|
|
public function harvestEmail($response);
|
|
|
|
}
|