| 1 | <?php |
||
| 22 | class SocialNetworkAuthEvent extends Event |
||
| 23 | { |
||
| 24 | const EVENT_BEFORE_AUTHENTICATE = 'beforeAuthenticate'; |
||
| 25 | const EVENT_AFTER_AUTHENTICATE = 'afterAuthenticate'; |
||
| 26 | const EVENT_BEFORE_CONNECT = 'beforeConnect'; |
||
| 27 | const EVENT_AFTER_CONNECT = 'afterConnect'; |
||
| 28 | |||
| 29 | protected $client; |
||
| 30 | protected $account; |
||
| 31 | |||
| 32 | public function __construct(SocialNetworkAccount $account, ClientInterface $client, $config = []) |
||
| 39 | |||
| 40 | public function getClient() |
||
| 44 | |||
| 45 | public function getAccount() |
||
| 49 | } |
||
| 50 |