| Total Complexity | 3 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 9 | class GetATreatmentController extends Controller |
||
| 10 | { |
||
| 11 | private NotificationService $notificationService; |
||
| 12 | |||
| 13 | public function __construct( |
||
| 14 | NotificationService $notificationService |
||
| 15 | ) { |
||
| 16 | $this->notificationService = $notificationService; |
||
| 17 | } |
||
| 18 | |||
| 19 | // Show Contact Form |
||
| 20 | public function create(Request $request) |
||
| 23 | } |
||
| 24 | |||
| 25 | // Store Contact Form data |
||
| 26 | public function store(GetATreatmentStoreRequest $request) |
||
| 37 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.