| 1 | <?php declare(strict_types=1); |
||
| 20 | class ArrayFactory implements Factory |
||
| 21 | { |
||
| 22 | const PRIORITY = 800; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param Schema $schema |
||
| 26 | * @param ProcessorBuilder $builder |
||
| 27 | * @return Processor|null |
||
| 28 | */ |
||
| 29 | public function create(Schema $schema, ProcessorBuilder $builder) |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @return int |
||
| 41 | */ |
||
| 42 | public function getPriority(): int |
||
| 46 | } |
||
| 47 |