update models + added social network account services

This commit is contained in:
Antonio Ramirez
2016-12-06 00:24:24 +01:00
parent be80b12a03
commit c5279eb13c
22 changed files with 1324 additions and 62 deletions

View 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();
}

View File

@ -1,18 +1,10 @@
<?php
namespace Da\User\Contracts;
/**
*
* ServiceInterface.php
*
* Date: 4/12/16
* Time: 2:56
* @author Antonio Ramirez <hola@2amigos.us>
*/
interface ServiceInterface
{
/**
* @return void
* @return bool
*/
public function run();
}