Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
54 | public function save() { |
||
55 | $custom_behavior = Yii::$container->get(\common\interfaces\CustomBehaviorInterface::class); |
||
56 | $custom_behavior->name = $this->name; |
||
57 | $custom_behavior->user_id = $this->user->id; |
||
58 | $custom_behavior->category_id = $this->category_id; |
||
59 | return $custom_behavior->save(); |
||
60 | } |
||
62 |