| Total Complexity | 3 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | final class RandomObject |
||
| 8 | { |
||
| 9 | public string $dirPath; |
||
| 10 | |||
| 11 | public int $fileNumber; |
||
| 12 | |||
| 13 | public function __construct( |
||
| 14 | string $dirPath, |
||
| 15 | int $fileNumber |
||
| 16 | ) { |
||
| 17 | $this->dirPath = $dirPath; |
||
| 18 | $this->fileNumber = $fileNumber; |
||
| 19 | } |
||
| 20 | |||
| 21 | public function getDirPath(): string |
||
| 22 | { |
||
| 23 | return $this->dirPath; |
||
| 24 | } |
||
| 25 | |||
| 26 | public function getFileNumber(): int |
||
| 29 | } |
||
| 30 | |||
| 31 | } |
||
| 32 |