| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 20 | 
| Code Lines | 15 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php declare(strict_types=1); | ||
| 21 | public static function getMetadata(): Metadata | ||
| 22 |     { | ||
| 23 | return new Metadata( | ||
| 24 | 'Table', | ||
| 25 | 'Creates a table', | ||
| 26 | [ | ||
| 27 | new MetadataParameter( | ||
| 28 | static::TITLE, | ||
| 29 | 'array', | ||
| 30 | 'Is it disabled?' | ||
| 31 | ), | ||
| 32 | new MetadataParameter( | ||
| 33 | static::IMAGE, | ||
| 34 | 'bool', | ||
| 35 | 'Is this table striped?' | ||
| 36 | ), | ||
| 37 | new MetadataParameter( | ||
| 38 | static::LINK, | ||
| 39 | 'bool', | ||
| 40 | 'Is this table bordered?' | ||
| 41 | ) | ||
| 46 |