From 134bcf0c00260850bbafdc8f7abb9063ec48492f Mon Sep 17 00:00:00 2001 From: Anders Bilfeldt Date: Fri, 16 Dec 2022 01:04:25 +0100 Subject: [PATCH] StyleCI --- src/View/Components/Alert.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/View/Components/Alert.php b/src/View/Components/Alert.php index dff995e..5d264a1 100644 --- a/src/View/Components/Alert.php +++ b/src/View/Components/Alert.php @@ -36,7 +36,7 @@ public function render() case Message::LEVEL_ERROR: return view('flash-message::components.alert-error'); default: - throw new \InvalidArgumentException('Invalid alert level: ' . $this->level); + throw new \InvalidArgumentException('Invalid alert level: '.$this->level); } } }