Completed
Push — master ( c7e9bf...6c9a09 )
by Théo
01:19
created

PsyshExtension   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 31
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 8

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
dl 0
loc 31
ccs 10
cts 10
cp 1
rs 10
c 0
b 0
f 0
wmc 5
lcom 0
cbo 8

1 Method

Rating   Name   Duplication   Size   Complexity  
B load() 0 25 5
1
<?php
2
3
/*
4
 * This file is part of the PsyshBundle package.
5
 *
6
 * (c) Théo FIDRY <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Fidry\PsyshBundle\DependencyInjection;
13
14
use Psy\Command\Command;
15
use Symfony\Component\Config\FileLocator;
16
use Symfony\Component\DependencyInjection\ContainerBuilder;
17
use Symfony\Component\DependencyInjection\Loader;
18
use Symfony\Component\DependencyInjection\Reference;
19
use Symfony\Component\ExpressionLanguage\Expression;
20
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
21
22
/**
23
 * This is the class that loads and manages your bundle configuration.
24
 *
25
 * To learn more see {@link http://symfony.com/doc/current/cookbook/bundles/extension.html}
26
 *
27
 * @author Théo FIDRY <[email protected]>
28
 */
29
final class PsyshExtension extends Extension
30
{
31 6
    /**
32
     * {@inheritdoc}
33 6
     */
34 6
    public function load(array $configs, ContainerBuilder $container)
35
    {
36 6
        $loader = new Loader\XmlFileLoader($container, new FileLocator(__DIR__.'/../../resources/config'));
37 6
        $loader->load('services.xml');
38 6
39 3
        $configuration = new Configuration();
40 3
        $config = $this->processConfiguration($configuration, $configs);
41 3
        foreach ($config['variables'] as $name => &$value) {
42 6
            if (is_string($value) && $value[0] === '@') {
43
                $value = new Reference(substr($value, 1));
44
            }
45
        }
46
        $container->findDefinition('psysh.shell')
47
            ->addMethodCall('setScopeVariables', [$config['variables'] + [
48
                'container' => new Reference('service_container'),
49
                'kernel' => new Reference('kernel'),
50
                'self' => new Reference('psysh.shell'),
51
                'parameters' => new Expression("service('service_container').getParameterBag().all()")
52
            ]]);
53
        
54
        // Register Psysh commands for service autoconfiguration (Symfony 3.3+)
55
        if (method_exists($container, 'registerForAutoconfiguration')) {
56
            $container->registerForAutoconfiguration(Command::class)->addTag('psysh.command');
0 ignored issues
show
Bug introduced by
The method registerForAutoconfiguration() does not exist on Symfony\Component\Depend...ection\ContainerBuilder. Did you maybe mean register()?

This check marks calls to methods that do not seem to exist on an object.

This is most likely the result of a method being renamed without all references to it being renamed likewise.

Loading history...
57
        }
58
    }
59
}
60