Skip to content

Commit ad537ff

Browse files
committed
Added missing variable (attrs)
1 parent 682987a commit ad537ff

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/Bounds/BoundWidget.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ class BoundWidget
1313
public $name;
1414
public $value;
1515
public $label;
16+
public $attrs;
1617

1718
public function __construct(array $data)
1819
{
@@ -21,6 +22,7 @@ public function __construct(array $data)
2122
$this->name = $data["name"];
2223
$this->value = $data["value"];
2324
$this->label = $data["label"];
25+
$this->attrs = $data["attrs"];
2426
$this->template = $data["template"];
2527

2628
unset($data["template"]);

0 commit comments

Comments
 (0)