Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php declare(strict_types=1); |
||
37 | public static function getMetadata(): Metadata |
||
38 | { |
||
39 | $metadata = HTMLButton::getMetadata(); |
||
40 | $metadata->appendParameter( |
||
41 | new MetadataParameter( |
||
42 | HTMLButton::COLOR, |
||
43 | 'string', |
||
44 | 'Button color. Supports all vuetify colors. Default: primary.' |
||
45 | ) |
||
46 | ); |
||
47 | return $metadata; |
||
48 | } |
||
50 |