| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 14 | trait TFile |
||
| 15 | { |
||
| 16 | use TLang; |
||
| 17 | |||
| 18 | /** @var IProcessFiles|null */ |
||
| 19 | protected $processFile = null; |
||
| 20 | |||
| 21 | 1 | public function setProcessFile(?IProcessFiles $dirs = null): void |
|
| 22 | { |
||
| 23 | 1 | $this->processFile = $dirs; |
|
| 24 | 1 | } |
|
| 25 | |||
| 26 | /** |
||
| 27 | * @throws FilesException |
||
| 28 | * @return IProcessFiles |
||
| 29 | */ |
||
| 30 | 2 | public function getProcessFile(): IProcessFiles |
|
| 36 | } |
||
| 37 | } |
||
| 38 |