Completed
Push — master ( 1ff8f1...5e8208 )
by Michael
01:48
created

Config::sugaredRimProcessConfig()   B

Complexity

Conditions 6
Paths 6

Size

Total Lines 16
Code Lines 10

Duplication

Lines 16
Ratio 100 %

Importance

Changes 0
Metric Value
dl 16
loc 16
rs 8.8571
c 0
b 0
f 0
cc 6
eloc 10
nc 6
nop 0
1
<?php
2
3
namespace SugaredRim\PHP\CodeSniffer;
4
5
class Config extends \PHP_CodeSniffer\Config
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