| Conditions | 1 |
| Paths | 1 |
| Total Lines | 27 |
| Code Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 19 |
| CRAP Score | 1.026 |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | 5 | public function rules() |
|
| 24 | { |
||
| 25 | return [ |
||
| 26 | [ |
||
| 27 | 5 | ['name', 'company', 'url'], |
|
| 28 | 5 | 'required', |
|
| 29 | 5 | ], |
|
| 30 | [ |
||
| 31 | 5 | ['name'], |
|
| 32 | 5 | 'string', |
|
| 33 | 5 | 'max' => 20, |
|
| 34 | 5 | ], |
|
| 35 | [ |
||
| 36 | 5 | ['company', 'url', 'platform', 'version', 'agency', 'email'], |
|
| 37 | 5 | 'string', |
|
| 38 | 5 | 'max' => 255, |
|
| 39 | 5 | ], |
|
| 40 | [ |
||
| 41 | 5 | ['email'], |
|
| 42 | 5 | 'email', |
|
| 43 | 5 | ], |
|
| 44 | [ |
||
| 45 | 5 | ['cpa'], |
|
| 46 | 5 | 'boolean', |
|
| 47 | 5 | ], |
|
| 48 | 5 | ]; |
|
| 49 | } |
||
| 50 | |||
| 65 |