add events + more wip classes

This commit is contained in:
Antonio Ramirez
2016-12-04 15:53:09 +01:00
parent 3e16d24048
commit bd06010018
21 changed files with 496 additions and 18 deletions

View File

@ -0,0 +1,31 @@
<?php
namespace Da\User\Event;
use Da\User\Model\SocialNetworkAccount;
use Da\User\Model\User;
use yii\base\Event;
class SocialNetworkConnectEvent extends Event
{
protected $user;
protected $account;
public function __construct(User $user, SocialNetworkAccount $account, $config = [])
{
$this->user = $user;
$this->account = $account;
parent::__construct($config);
}
public function getUser()
{
return $this->user;
}
public function getAccount()
{
return $this->account;
}
}