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