@@ -70,9 +70,9 @@ |
||
70 | 70 | public function getPercent() |
71 | 71 | { |
72 | 72 | if (empty($this->percent) && ($frequencies = $this->getFrequency())) { |
73 | - $ratio = max($frequencies) / 100; |
|
73 | + $ratio = max($frequencies)/100; |
|
74 | 74 | foreach ($frequencies as $word => $frequency) { |
75 | - $this->percent[$word] = $frequency / $ratio; |
|
75 | + $this->percent[$word] = $frequency/$ratio; |
|
76 | 76 | } |
77 | 77 | } |
78 | 78 |