| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 3 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | trait PluginTrait |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * Returns the loginAccounts service. |
||
| 22 | * |
||
| 23 | * @return \dukt\social\services\LoginAccounts The loginAccounts service |
||
| 24 | * @throws \yii\base\InvalidConfigException |
||
| 25 | */ |
||
| 26 | public function getLoginAccounts() |
||
| 27 | { |
||
| 28 | /** @var Plugin $this */ |
||
| 29 | return $this->get('loginAccounts'); |
||
|
|
|||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Returns the loginProviders service. |
||
| 34 | * |
||
| 35 | * @return \dukt\social\services\LoginProviders The loginProviders service |
||
| 36 | * @throws \yii\base\InvalidConfigException |
||
| 37 | */ |
||
| 38 | public function getLoginProviders() |
||
| 42 | } |
||
| 43 | } |
||
| 44 |