update models + added social network account services
This commit is contained in:
17
lib/User/Contracts/AuthClientInterface.php
Normal file
17
lib/User/Contracts/AuthClientInterface.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
namespace Da\User\Contracts;
|
||||
|
||||
use yii\authclient\ClientInterface;
|
||||
|
||||
interface AuthClientInterface extends ClientInterface
|
||||
{
|
||||
/**
|
||||
* @return string|null email
|
||||
*/
|
||||
public function getEmail();
|
||||
|
||||
/**
|
||||
* @return string|null username
|
||||
*/
|
||||
public function getUserName();
|
||||
}
|
||||
Reference in New Issue
Block a user