| Total Complexity | 2 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 11 | class Spinner extends VuetifyElement |
||
| 12 | { |
||
| 13 | public function render(array $parameters, HTMLNode $previous): HTMLNode |
||
| 14 | { |
||
| 15 | $node = HTMLNode::factory( |
||
| 16 | 'v-progress-circular', |
||
| 17 | [ |
||
| 18 | 'indeterminate' => null |
||
| 19 | ] |
||
| 20 | ); |
||
| 21 | $this->color($parameters, $node); |
||
| 22 | return $node; |
||
| 23 | } |
||
| 24 | |||
| 25 | public static function getMetadata(): Metadata |
||
| 31 | ] |
||
| 32 | ); |
||
| 35 |