Total Complexity | 11 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
7 | class Style implements \JsonSerializable |
||
8 | { |
||
9 | /** |
||
10 | * @param string|null $description Optional description of this style |
||
11 | * @param string[]|null $extend List of styles that this style inherits from (array) |
||
12 | * @param string|null $extends Single style that this style inherits from (string) |
||
13 | * @param StyleValue|null $value Single style value object |
||
14 | * @param StyleValue[]|null $values Array of style value objects |
||
15 | */ |
||
16 | 16 | public function __construct( |
|
23 | 16 | } |
|
24 | |||
25 | 12 | public function jsonSerialize(): array |
|
48 |