Plugin   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 27
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 0
Metric Value
wmc 3
lcom 0
cbo 0
dl 0
loc 27
rs 10
c 0
b 0
f 0

3 Methods

Rating   Name   Duplication   Size   Complexity  
A appendConfiguration() 0 3 1
A setContainerBuilder() 0 3 1
A setContainer() 0 3 1
1
<?php
2
/**
3
 * @author Gerard van Helden <[email protected]>
4
 * @copyright Zicht Online <http://zicht.nl>
5
 */
6
7
namespace Zicht\Tool;
8
9
use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
10
11
/**
12
 * Base plugin class
13
 */
14
abstract class Plugin implements PluginInterface
15
{
16
    // @codeCoverageIgnoreStart
17
    /**
18
     * @{inheritDoc}
19
     */
20
    public function appendConfiguration(ArrayNodeDefinition $rootNode)
21
    {
22
    }
23
24
    /**
25
     * @{inheritDoc}
26
     */
27
    public function setContainerBuilder(Container\ContainerBuilder $builder)
28
    {
29
    }
30
31
    /**
32
     * @{inheritDoc}
33
     */
34
    public function setContainer(Container\Container $container)
35
    {
36
    }
37
38
39
    // @codeCoverageIgnoreEnd
40
}
41