diff --git a/src/Controllers/Console/Bookmark/RefreshController.php b/src/Controllers/Console/Bookmark/RefreshController.php index 4f9df3b450..eb6765ac9a 100644 --- a/src/Controllers/Console/Bookmark/RefreshController.php +++ b/src/Controllers/Console/Bookmark/RefreshController.php @@ -13,8 +13,8 @@ use PhpMyAdmin\Template; final class RefreshController extends AbstractController { public function __construct( - protected ResponseRenderer $response, - protected Template $template, + ResponseRenderer $response, + Template $template, private Console $console, ) { parent::__construct($response, $template); diff --git a/src/Controllers/Table/DeleteConfirmController.php b/src/Controllers/Table/DeleteConfirmController.php index 7902f24b72..cfba4a22f8 100644 --- a/src/Controllers/Table/DeleteConfirmController.php +++ b/src/Controllers/Table/DeleteConfirmController.php @@ -24,8 +24,8 @@ use function is_array; final class DeleteConfirmController extends AbstractController { public function __construct( - protected ResponseRenderer $response, - protected Template $template, + ResponseRenderer $response, + Template $template, private readonly DbTableExists $dbTableExists, ) { parent::__construct($response, $template); diff --git a/src/Controllers/Table/DropColumnConfirmationController.php b/src/Controllers/Table/DropColumnConfirmationController.php index 7185658404..b2626056a3 100644 --- a/src/Controllers/Table/DropColumnConfirmationController.php +++ b/src/Controllers/Table/DropColumnConfirmationController.php @@ -21,8 +21,8 @@ use function __; final class DropColumnConfirmationController extends AbstractController { public function __construct( - protected ResponseRenderer $response, - protected Template $template, + ResponseRenderer $response, + Template $template, private readonly DbTableExists $dbTableExists, ) { parent::__construct($response, $template);