| Total Complexity | 3 |
| Total Lines | 17 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | final class StyleOptions implements IStyleOptions |
||
| 14 | { |
||
| 15 | private array $options; |
||
| 16 | |||
| 17 | public function __construct(StyleOption ...$options) |
||
| 20 | } |
||
| 21 | |||
| 22 | public function getIterator(): Traversable |
||
| 23 | { |
||
| 24 | return new ArrayIterator($this->options); |
||
| 25 | } |
||
| 26 | |||
| 27 | public function isEmpty(): bool |
||
| 30 | } |
||
| 31 | } |
||
| 32 |