| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 2 |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | public function store(GetATreatmentStoreRequest $request) |
||
| 27 | { |
||
| 28 | //dd($request->all()); |
||
| 29 | // Store data in database |
||
| 30 | //Contact::create($request->all()); |
||
| 31 | |||
| 32 | $this->notificationService->sendEmailGetATreatment($request->all(), 1); |
||
| 33 | |||
| 34 | return back()->with('success', 'Thank you for your treatment request, I will contact you soon.'); |
||
| 35 | } |
||
| 37 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.