1 | <?php |
||
8 | final class ProcessorsRegistry implements ProcessorsRegistryInterface |
||
9 | { |
||
10 | private $processors; |
||
11 | |||
12 | public function __construct(array $processors = array()) |
||
20 | |||
21 | public function add(ProcessorInterface $processor) |
||
25 | |||
26 | public function all() |
||
30 | |||
31 | /** |
||
32 | * {@inheritdoc} |
||
33 | */ |
||
34 | public function getIterator() |
||
38 | } |
||
39 |