Conditions | 2 |
Paths | 2 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
39 | 12 | private function __construct(string $path) |
|
40 | { |
||
41 | 12 | $info = pathinfo($path); |
|
42 | |||
43 | 12 | $this->dirname = $info['dirname']; |
|
44 | 12 | $this->basename = $info['basename']; |
|
45 | 12 | $this->extension = empty($info['extension']) ? null : $info['extension']; |
|
46 | 12 | $this->filename = $info['filename']; |
|
47 | 12 | } |
|
97 |