| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | public function rules() |
||
| 19 | {
|
||
| 20 | return array( |
||
| 21 | array('model, attribute, content', 'required'),
|
||
| 22 | array('model, attribute', 'length', 'max' => 255),
|
||
| 23 | array('popup', 'numerical', 'integerOnly' => true),
|
||
| 24 | |||
| 25 | array('id, model, attribute, content', 'safe', 'on' => 'search'),
|
||
| 26 | ); |
||
| 27 | } |
||
| 28 | |||
| 36 | } |