From 53fbc9f3768f611c960a5d891a1abb259163978a Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 1 Oct 2020 10:53:57 -0500 Subject: [PATCH] rename method --- src/Illuminate/View/ComponentAttributeBag.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/View/ComponentAttributeBag.php b/src/Illuminate/View/ComponentAttributeBag.php index 4e4355254d36..0a5111037eb5 100644 --- a/src/Illuminate/View/ComponentAttributeBag.php +++ b/src/Illuminate/View/ComponentAttributeBag.php @@ -219,7 +219,7 @@ protected function shouldEscapeAttributeValue($escape, $value) * @param mixed $value * @return \Illuminate\View\AppendableAttributeValue */ - public function appends($value) + public function prepends($value) { return new AppendableAttributeValue($value); }