We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb26c55 commit 5d905a9Copy full SHA for 5d905a9
src/Structures/Generator/MockupExtraItem.php
@@ -23,6 +23,20 @@ class MockupExtraItem extends BaseItem
23
*/
24
public $url;
25
26
+ /**
27
+ * Mockup style
28
+ *
29
+ * @var string
30
+ */
31
+ public $option;
32
+
33
34
+ * Mockup style group
35
36
37
38
+ public $optionGroup;
39
40
/**
41
* @param array|string $raw
42
* @return MockupExtraItem
@@ -33,6 +47,8 @@ public static function fromArray(array $raw)
47
48
$item->title = $raw['title'];
49
$item->url = $raw['url'];
50
+ $item->option = $raw['option'];
51
+ $item->optionGroup = $raw['option_group'];
52
53
return $item;
54
}
0 commit comments