PercentCalculator->calculatePercent
10
public
function
calculatePercent
(
)
:
float
11
{
12
if
(
$this
->
denominator
)
{
13
return
round
(
$this
->
numerator
/
$this
->
denominator
*
100
,
1
)
;
16
return
0.0
;
17
}