Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jfrocha committed Sep 19, 2019
1 parent a9f480f commit 36a3c15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/MonarcFO/Service/AnrCartoRiskService.php
Expand Up @@ -106,7 +106,7 @@ public function buildListScalesAndHeaders($anrId)
foreach ($scales as $scale) {
if (isset($this->listScales[$scale->get('type')])) {
for ($i = $scale->get('min'); $i <= $scale->get('max'); $i++) {
$this->listScales[$scale->get('type')][$i] = $i;
array_push($this->listScales[$scale->get('type')],$i);
}
}
}
Expand Down

0 comments on commit 36a3c15

Please sign in to comment.