Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
23 | 25 | public function add(string $path, string $pathLocal = '', string|ConfigReaderInterface $reader = null): self |
|
24 | { |
||
25 | 25 | $readerInstance = $this->normalizeReader($reader); |
|
26 | |||
27 | 25 | $this->configItems[] = new GacelaConfigItem($path, $pathLocal, $readerInstance); |
|
28 | |||
29 | 25 | return $this; |
|
30 | } |
||
56 |