Completed
Push — master ( 208a4c...12b9c5 )
by Michael
02:28
created

Config   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 5 1
1
<?php
2
3
namespace SugaredRim\PHP\CodeSniffer;
4
5
class Config extends \PHP_CodeSniffer\Config
0 ignored issues
show
Bug introduced by
There is one abstract method setConfigData in this class; you could implement it, or declare this class as abstract.
Loading history...
6
{
7
    use SugaredRimConfigAwareTrait;
8
9
    public function __construct(array $cliArgs = [], $dieOnUnknownArg = true, callable $finderByConfig = null)
10
    {
11
        $this->sugaredRimSetFinderByConfig($finderByConfig);
12
        parent::__construct($cliArgs, $dieOnUnknownArg);
13
    }
14
}
15