| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | public function rules(): array |
||
| 23 | { |
||
| 24 | return [ |
||
| 25 | 'name' => 'required|max:100', |
||
| 26 | 'email' => 'nullable|email', |
||
| 27 | 'company' => 'nullable|max:255', |
||
| 28 | 'designation' => 'nullable|max:100', |
||
| 29 | 'message' => 'required|max:5500', |
||
| 30 | 'approved' => 'sometimes|boolean', |
||
| 31 | 'rating' => 'sometimes|numeric', |
||
| 32 | ]; |
||
| 35 |