| Conditions | 3 |
| Paths | 2 |
| Total Lines | 8 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php |
||
| 28 | * FileSystemHandler constructor. |
||
| 29 | * @param string $path |
||
| 30 | */ |
||
| 31 | 1 | public function __construct(string $path) |
|
| 32 | { |
||
| 33 | 1 | $this->path = new FileSystemPath($path); |
|
| 34 | 1 | $this->fileReader = new FileSystemReader($this->path); |
|
| 35 | 1 | $this->fileWriter = new FileSystemWriter($this->path); |
|
| 36 | 1 | } |
|
| 78 |