minor cleanups

This commit is contained in:
resurtm
2016-12-18 19:21:28 +06:00
parent b0cf145c6b
commit 5f4b54bb23
9 changed files with 19 additions and 12 deletions

View File

@ -3,8 +3,9 @@
namespace Da\User\AuthClient;
use Da\User\Contracts\AuthClientInterface;
use yii\authclient\clients\Google as BaseGoogle;
class Google extends \yii\authclient\clients\Google implements AuthClientInterface
class Google extends BaseGoogle implements AuthClientInterface
{
/**
* {@inheritdoc}
@ -21,6 +22,6 @@ class Google extends \yii\authclient\clients\Google implements AuthClientInterfa
*/
public function getUsername()
{
return;
return null;
}
}