| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class FeatureColumnsFactory extends AbstractFactory |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @inheritdoc |
||
| 12 | */ |
||
| 13 | 2 | public function create(?array $ops = null): FeatureColumns |
|
| 14 | { |
||
| 15 | 2 | $component = new FeatureColumns(); |
|
| 16 | 2 | $this->init($component, $ops); |
|
| 17 | 2 | $this->validate($component); |
|
| 18 | 2 | return $component; |
|
| 19 | } |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @inheritdoc |
||
| 23 | */ |
||
| 24 | 3 | public static function defaultOps(): array |
|
| 31 | ] |
||
| 32 | ); |
||
| 35 |