| Conditions | 1 |
| Paths | 1 |
| Total Lines | 36 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 41 | public function rules() |
||
| 42 | { |
||
| 43 | return [ |
||
| 44 | [ |
||
| 45 | [ |
||
| 46 | 'name', |
||
| 47 | 'email', |
||
| 48 | 'quantity' |
||
| 49 | ], |
||
| 50 | 'required' |
||
| 51 | ], |
||
| 52 | [ |
||
| 53 | 'quantity', |
||
| 54 | 'each', |
||
| 55 | 'rule' => ['integer'], |
||
| 56 | ], |
||
| 57 | [ |
||
| 58 | [ |
||
| 59 | 'name', |
||
| 60 | 'email', |
||
| 61 | 'phone', |
||
| 62 | ], |
||
| 63 | 'string', |
||
| 64 | 'max' => 64 |
||
| 65 | ], |
||
| 66 | [ |
||
| 67 | 'comment', |
||
| 68 | 'string', |
||
| 69 | 'max' => 2048 |
||
| 70 | ], |
||
| 71 | [ |
||
| 72 | 'email', |
||
| 73 | 'email' |
||
| 74 | ], |
||
| 75 | ]; |
||
| 76 | } |
||
| 77 | |||
| 119 |