diff --git a/app/Api/V1/Controllers/Search/AccountController.php b/app/Api/V1/Controllers/Search/AccountController.php index 606e020ac4..314bab7de6 100644 --- a/app/Api/V1/Controllers/Search/AccountController.php +++ b/app/Api/V1/Controllers/Search/AccountController.php @@ -53,11 +53,6 @@ final class AccountController extends Controller AccountSearch::SEARCH_NUMBER, ]; - public function __construct() - { - parent::__construct(); - } - /** * This endpoint is documented at: * https://api-docs.firefly-iii.org/?urls.primaryName=2.0.0%20(v1)#/search/searchAccounts diff --git a/app/Http/Controllers/System/InstallController.php b/app/Http/Controllers/System/InstallController.php index 4aadad8e38..dd27fc6936 100644 --- a/app/Http/Controllers/System/InstallController.php +++ b/app/Http/Controllers/System/InstallController.php @@ -66,14 +66,6 @@ final class InstallController extends Controller 'firefly-iii:verify-security-alerts' => [], ]; - /** - * InstallController constructor. - */ - public function __construct() - { - parent::__construct(); - } - /** * Show index. * diff --git a/mago.toml b/mago.toml index be7c716aa3..5d5ccb402f 100644 --- a/mago.toml +++ b/mago.toml @@ -47,7 +47,6 @@ no-empty-catch-clause = { enabled = false } excessive-parameter-list = { enabled = false } no-redundant-math={ enabled = false } prefer-first-class-callable={ enabled = false } -no-redundant-method-override={ enabled = false } prefer-arrow-function = { enabled = false }