Skip to content

Commit 9036d87

Browse files
Added some scrutinizer exclusions
1 parent 1032884 commit 9036d87

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ExceptionHandlers/DefaultExceptionHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*/
2525
final class DefaultExceptionHandler implements ExceptionHandlerContract
2626
{
27-
public function handle(array $user_config, \Exception $ex): ?array
27+
public function handle(array $user_config, /** @scrutinizer ignore-unused */ \Exception $ex): ?array
2828
{
2929
$defaults = [
3030
RB::KEY_API_CODE => BaseApiCodes::EX_UNCAUGHT_EXCEPTION(),

src/ExceptionHandlers/ValidationExceptionHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*/
2525
final class ValidationExceptionHandler implements ExceptionHandlerContract
2626
{
27-
public function handle(array $user_config, \Exception $ex): ?array
27+
public function handle(array $user_config, /** @scrutinizer ignore-unused */ \Exception $ex): ?array
2828
{
2929
return [
3030
RB::KEY_API_CODE => BaseApiCodes::EX_VALIDATION_EXCEPTION(),

0 commit comments

Comments
 (0)