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