1 | <?php |
||
24 | final class ChainFactory extends AbstractFactory implements LoggerAwareInterface |
||
25 | { |
||
26 | use LoggerAwareTrait; |
||
27 | |||
28 | protected static $dependencies = [ |
||
29 | ['requiredClass' => Chain::class, 'packageName' => 'geocoder-php/chain-provider'], |
||
30 | ]; |
||
31 | |||
32 | /** |
||
33 | * {@inheritdoc} |
||
34 | */ |
||
35 | 1 | protected function getProvider(array $config): Provider |
|
44 | |||
45 | /** |
||
46 | * {@inheritdoc} |
||
47 | */ |
||
48 | 1 | protected static function configureOptionResolver(OptionsResolver $resolver) |
|
55 | } |
||
56 |