]>
Commit | Line | Data |
---|---|---|
f38e03dc TC |
1 | <?php |
2 | ||
4dc87223 | 3 | namespace Wallabag\AnnotationBundle\DependencyInjection; |
f38e03dc TC |
4 | |
5 | use Symfony\Component\DependencyInjection\ContainerBuilder; | |
f38e03dc | 6 | use Symfony\Component\HttpKernel\DependencyInjection\Extension; |
f38e03dc | 7 | |
4dc87223 | 8 | class WallabagAnnotationExtension extends Extension |
f38e03dc TC |
9 | { |
10 | /** | |
11 | * {@inheritdoc} | |
12 | */ | |
13 | public function load(array $configs, ContainerBuilder $container) | |
14 | { | |
15 | $configuration = new Configuration(); | |
16 | $config = $this->processConfiguration($configuration, $configs); | |
f38e03dc TC |
17 | } |
18 | } |