1 | <?php |
||
22 | class SocialNetworkConnectEvent extends Event |
||
23 | { |
||
24 | const EVENT_BEFORE_CONNECT = 'beforeConnect'; |
||
25 | const EVENT_AFTER_CONNECT = 'afterConnect'; |
||
26 | const EVENT_BEFORE_DISCONNECT = 'beforeDisconnect'; |
||
27 | const EVENT_AFTER_DISCONNECT = 'afterDisconnect'; |
||
28 | |||
29 | protected $user; |
||
30 | protected $account; |
||
31 | |||
32 | public function __construct(User $user, SocialNetworkAccount $account, $config = []) |
||
39 | |||
40 | public function getUser() |
||
44 | |||
45 | public function getAccount() |
||
49 | } |
||
50 |