From d590d78dc286c88fcf38588f3e0f1d4fbcc45989 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Thu, 1 Oct 2020 10:49:13 -0500 Subject: [PATCH] add doc blocks --- src/Illuminate/View/AppendableAttributeValue.php | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/Illuminate/View/AppendableAttributeValue.php b/src/Illuminate/View/AppendableAttributeValue.php index 09a3e9741324..490ca408cdc0 100644 --- a/src/Illuminate/View/AppendableAttributeValue.php +++ b/src/Illuminate/View/AppendableAttributeValue.php @@ -4,8 +4,19 @@ class AppendableAttributeValue { + /** + * The attribute value. + * + * @var mixed + */ public $value; + /** + * Create a new appendable attribute value. + * + * @param mixed $value + * @return void + */ public function __construct($value) { $this->value = $value;