| Conditions | 1 |
| Paths | 1 |
| Total Lines | 8 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 27 | public function store(ContactMeStoreRequest $request) |
||
| 28 | { |
||
| 29 | // Store data in database |
||
| 30 | //Contact::create($request->all()); |
||
| 31 | |||
| 32 | $this->notificationService->sendEmailContactMe($request->all(), 1); |
||
| 33 | |||
| 34 | return back()->with('success', 'We have received your message and would like to thank you for writing to us.'); |
||
| 35 | //return redirect('/'); |
||
| 38 | } |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.