Total Complexity | 2 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | class Store |
||
12 | { |
||
13 | use AsAction, WithAttributes; |
||
14 | |||
15 | /** |
||
16 | * Get the validation rules that apply to the action. |
||
17 | * |
||
18 | * @return array |
||
19 | */ |
||
20 | public function rules(): array |
||
28 | ]; |
||
29 | } |
||
30 | |||
31 | /** |
||
32 | * Execute the action and return a result. |
||
33 | * |
||
34 | * @return mixed |
||
35 | */ |
||
36 | public function handle(array $attributes): ContactMessage |
||
47 |