| Total Complexity | 5 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class SchematorBuilder implements SchematorBuilderInterface |
||
| 10 | { |
||
| 11 | protected SchematorInterface $schemator; |
||
| 12 | |||
| 13 | public function __construct() |
||
| 14 | { |
||
| 15 | $this->create(); |
||
| 16 | } |
||
| 17 | |||
| 18 | public function create(): SchematorBuilderInterface |
||
| 19 | { |
||
| 20 | $this->schemator = new Schemator(); |
||
| 21 | return $this; |
||
| 22 | } |
||
| 23 | |||
| 24 | public function withFilters(array $filters): SchematorBuilderInterface |
||
| 30 | } |
||
| 31 | |||
| 32 | public function get(): SchematorInterface |
||
| 35 | } |
||
| 36 | } |
||
| 37 |