From 0f009c3471ffa67089a662466bb71abdacc2457e Mon Sep 17 00:00:00 2001 From: Matt Glaman Date: Sun, 29 May 2022 17:11:48 -0500 Subject: [PATCH] Bootstrap levels are `int` in DrupalBootLevels --- src/Attributes/Bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Attributes/Bootstrap.php b/src/Attributes/Bootstrap.php index 725151c8f6..d5b4b4daf9 100644 --- a/src/Attributes/Bootstrap.php +++ b/src/Attributes/Bootstrap.php @@ -15,7 +15,7 @@ class Bootstrap * The level to bootstrap to. */ public function __construct( - #[ExpectedValues(valuesFromClass: DrupalBootLevels::class)] public string $level, + #[ExpectedValues(valuesFromClass: DrupalBootLevels::class)] public int $level, ) { }