From 1a0feca7984f8de7cbe7dda13d193fae889f6fc5 Mon Sep 17 00:00:00 2001 From: Brandon Date: Tue, 1 Oct 2024 12:49:11 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20Fix=20Exception=20message=20typo?= =?UTF-8?q?=20(#86)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Navi.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Navi.php b/src/Navi.php index a067a41..7cf4282 100644 --- a/src/Navi.php +++ b/src/Navi.php @@ -164,7 +164,7 @@ public function withClasses(string|array $classes): self public function withoutClasses(string|array $classes): self { if ($this->menu) { - throw new MenuLifecycleException('Attributes must be set before building the menu.'); + throw new MenuLifecycleException('Classes must be set before building the menu.'); } $classes = is_string($classes)