| Total Complexity | 1 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | trait TSizes |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @param int $currentWidth |
||
| 15 | * @param int $maxWidth |
||
| 16 | * @param int $currentHeight |
||
| 17 | * @param int $maxHeight |
||
| 18 | * @return array{width: int, height: int} |
||
| 19 | */ |
||
| 20 | 13 | protected function calculateSize(int $currentWidth, int $maxWidth, int $currentHeight, int $maxHeight): array |
|
| 31 |