| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 56 | public function rules() |
||
| 57 | { |
||
| 58 | return [ |
||
| 59 | ['requestId', 'integer'], |
||
| 60 | ['siteId', 'integer'], |
||
| 61 | ['title', DbStringValidator::class, 'max' => 120], |
||
| 62 | ['url', DbStringValidator::class, 'max' => 255], |
||
| 63 | ['queryString', DbStringValidator::class, 'max' => 255], |
||
| 64 | ['title', 'string'], |
||
| 65 | ['url', 'string'], |
||
| 66 | ['queryString', 'string'], |
||
| 67 | ]; |
||
| 70 |