Configuration   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
3
namespace Aptarus\PromClient;
4
5
class Configuration
0 ignored issues
show
Coding Style introduced by
Since you have declared the constructor as private, maybe you should also declare the class as final.
Loading history...
6
{
7
    /**
8
     * @codeCoverageIgnore
9
     */
10
    private function __construct()
11
    {
12
        // Block it from being instantiated.
13
    }
14
15
    public static $storage_dir = '/var/lib/promClientPhp/default';
16
}
17
18
// vim:sw=4 ts=4 et
19