2020-04-15 10:30:52 +10:00
|
|
|
<?php
|
2020-04-06 22:32:27 +10:00
|
|
|
|
|
|
|
|
namespace App\Libraries\OAuth\Providers;
|
2019-05-22 13:18:18 +10:00
|
|
|
|
|
|
|
|
interface ProviderInterface
|
|
|
|
|
{
|
|
|
|
|
public function getTokenResponse($token);
|
|
|
|
|
|
|
|
|
|
public function harvestEmail($response);
|
2020-05-13 14:51:16 +10:00
|
|
|
|
2020-05-13 16:20:05 +10:00
|
|
|
public function harvestName($response);
|
2019-05-22 13:18:18 +10:00
|
|
|
}
|