16 lines
311 B
PHP
16 lines
311 B
PHP
<?php
|
|
|
|
namespace App\Domain\Reports\Calculators;
|
|
|
|
final class DepartmentLoadCalculator
|
|
{
|
|
public function calculate(int|float $currentCount, int|float $bedsCount): int
|
|
{
|
|
if ($bedsCount <= 0) {
|
|
return 0;
|
|
}
|
|
|
|
return (int) round($currentCount * 100 / $bedsCount);
|
|
}
|
|
}
|