| Total Complexity | 7 |
| Total Lines | 59 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 13 | class SchematorBuilder implements SchematorBuilderInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var SchematorInterface Schemator object |
||
| 17 | */ |
||
| 18 | protected SchematorInterface $schemator; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * SchematorBuilder constructor. |
||
| 22 | */ |
||
| 23 | public function __construct() |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @inheritDoc |
||
| 30 | */ |
||
| 31 | public function create(): SchematorBuilderInterface |
||
| 35 | } |
||
| 36 | |||
| 37 | /** |
||
| 38 | * @inheritDoc |
||
| 39 | */ |
||
| 40 | public function withPathDelimiter(string $pathDelimiter): SchematorBuilderInterface |
||
| 41 | { |
||
| 42 | $this->schemator->setPathDelimiter($pathDelimiter); |
||
| 43 | return $this; |
||
| 44 | } |
||
| 45 | |||
| 46 | /** |
||
| 47 | * @inheritDoc |
||
| 48 | */ |
||
| 49 | public function withErrorsLevelMask(int $errorsLevelMask): SchematorBuilderInterface |
||
| 53 | } |
||
| 54 | |||
| 55 | /** |
||
| 56 | * @inheritDoc |
||
| 57 | */ |
||
| 58 | public function withFilters(iterable $filters): SchematorBuilderInterface |
||
| 64 | } |
||
| 65 | |||
| 66 | /** |
||
| 67 | * @inheritDoc |
||
| 68 | */ |
||
| 69 | public function get(): SchematorInterface |
||
| 74 |