| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | public function init() |
||
| 36 | { |
||
| 37 | if (empty($this->key)) { |
||
| 38 | throw new InvalidConfigException(Yii::t('usuario', 'Required "key" cannot be empty.')); |
||
| 39 | } |
||
| 40 | |||
| 41 | if (empty($this->secret)) { |
||
| 42 | throw new InvalidConfigException(Yii::t('usuario', 'Required "secret" cannot be empty.')); |
||
| 43 | } |
||
| 44 | |||
| 45 | parent::init(); |
||
| 46 | } |
||
| 47 | |||
| 78 |