From 27065599b5bb4f701de5e7f256bf863141b1d06a Mon Sep 17 00:00:00 2001 From: Hazem Nassr Date: Thu, 3 Sep 2020 13:11:45 +0300 Subject: [PATCH] Remove unnecessary comma --- src/Illuminate/View/Concerns/ManagesComponents.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/View/Concerns/ManagesComponents.php b/src/Illuminate/View/Concerns/ManagesComponents.php index e752a7993348..6dd3c66d7aff 100644 --- a/src/Illuminate/View/Concerns/ManagesComponents.php +++ b/src/Illuminate/View/Concerns/ManagesComponents.php @@ -114,7 +114,7 @@ protected function componentData() $this->componentData[count($this->componentStack)], ['slot' => $defaultSlot], $this->slots[count($this->componentStack)], - ['__laravel_slots' => $slots], + ['__laravel_slots' => $slots] ); }