| Conditions | 5 |
| Paths | 5 |
| Total Lines | 13 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 30 |
| Changes | 0 | ||
| 1 | <?php |
||
| 49 | public function beforeSave($insert) |
||
| 50 | { |
||
| 51 | if (parent::beforeSave($insert)) { |
||
| 52 | if ($insert) { |
||
| 53 | if (!Yii::$app instanceof \yii\console\Application) { |
||
| 54 | $this->user_id = Yii::$app->user->isGuest ? 0 : Yii::$app->user->id; |
||
| 55 | $this->ip = ip2long(Yii::$app->request->getUserIP()); |
||
| 56 | } |
||
| 57 | } |
||
| 58 | return true; |
||
| 59 | } |
||
| 60 | return false; |
||
| 61 | } |
||
| 62 | |||
| 72 |