Skip to content

Commit

Permalink
add doc blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Oct 1, 2020
1 parent 09b887b commit d590d78
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/Illuminate/View/AppendableAttributeValue.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit d590d78

Please sign in to comment.