Completed
Push — master ( b77bbc...7eba37 )
by Mikołaj
02:49 queued 01:41
created

BitBagCmsExtension   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 0
dl 0
loc 9
c 0
b 0
f 0
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A load() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
/**
6
 * This file was created by the developers from BitBag.
7
 * Feel free to contact us once you face any issues or want to start
8
 * another great project.
9
 * You can find more information about us on https://bitbag.shop and write us
10
 * an email on [email protected].
11
 */
12
13
namespace BitBag\CmsPlugin\DependencyInjection;
14
15
use Symfony\Component\DependencyInjection\ContainerBuilder;
16
use Symfony\Component\DependencyInjection\Extension\Extension;
17
18
/**
19
 * @author Mikołaj Król <[email protected]>
20
 */
21
final class BitBagCmsExtension extends Extension
22
{
23
    /**
24
     * {@inheritdoc}
25
     */
26
    public function load(array $configs, ContainerBuilder $container): void
27
    {
28
    }
29
}
30