| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 23 | 1 | public function __construct( |
|
| 24 | FileRepository $files, |
||
| 25 | FolderRepository $folders, |
||
| 26 | RemoveFileHandler $removeFile, |
||
| 27 | RemoveFolderHandler $removeFolder |
||
| 28 | ) { |
||
| 29 | 1 | $this->files = $files; |
|
| 30 | 1 | $this->folders = $folders; |
|
| 31 | 1 | $this->removeFile = $removeFile; |
|
| 32 | 1 | $this->removeFolder = $removeFolder; |
|
| 33 | 1 | } |
|
| 51 |