ImportExtension::load()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 2
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
nc 1
nop 2
1
<?php
2
3
/**
4
 * TechDivision\Import\Product\Grouped\DependencyInjection\ImportExtension
5
 *
6
 * NOTICE OF LICENSE
7
 *
8
 * This source file is subject to the Open Software License (OSL 3.0)
9
 * that is available through the world-wide-web at this URL:
10
 * http://opensource.org/licenses/osl-3.0.php
11
 *
12
 * PHP version 5
13
 *
14
 * @author    Tim Wagner <[email protected]>
15
 * @copyright 2019 TechDivision GmbH <[email protected]>
16
 * @license   http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
17
 * @link      https://github.com/techdivision/import-product-grouped
18
 */
19
20
namespace TechDivision\Import\Product\Grouped\DependencyInjection;
21
22
use Symfony\Component\Config\FileLocator;
23
use Symfony\Component\HttpKernel\DependencyInjection\Extension;
24
use Symfony\Component\DependencyInjection\ContainerBuilder;
25
use Symfony\Component\DependencyInjection\Loader\XmlFileLoader;
26
27
/**
28
 * The symfony extension implementation for the M2IF import product link library.
29
 *
30
 * @author    Tim Wagner <[email protected]>
31
 * @copyright 2019 TechDivision GmbH <[email protected]>
32
 * @license   http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
33
 * @link      https://github.com/techdivision/import-product-grouped
34
 * @link      http://www.techdivision.com
35
 */
36
class ImportExtension extends Extension
37
{
38
39
    /**
40
     * Load's the bundles DI configuration.
41
     *
42
     * @param array                                                   $configs   The array with the configuration
43
     * @param \Symfony\Component\DependencyInjection\ContainerBuilder $container The container instance
44
     */
45
    public function load(array $configs, ContainerBuilder $container)
46
    {
47
        $loader = new XmlFileLoader($container, new FileLocator(dirname(__DIR__) . '/Resources/config'));
48
        $loader->load('services.xml');
49
    }
50
}
51