| Total Complexity | 3 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | class ContactMeController extends Controller |
||
| 11 | { |
||
| 12 | private NotificationService $notificationService; |
||
| 13 | |||
| 14 | public function __construct( |
||
| 18 | } |
||
| 19 | |||
| 20 | // Show Contact Form |
||
| 21 | public function index(Request $request) |
||
| 24 | } |
||
| 25 | |||
| 26 | // Store Contact Form data |
||
| 27 | public function store(ContactMeStoreRequest $request) |
||
| 38 | } |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.