Skip to content

Commit f48dfd1

Browse files
authored
Merge pull request #1 from tm1000/patch-1
Fix property call
2 parents 7ce8581 + b1e6fe0 commit f48dfd1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Parser.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ protected function parseSuburb(string $address): string
246246
}
247247
else
248248
{
249-
$suburbs = array_merge($this->suburbs['QLD'], $this->suburbs['NSW'], $this->suburbs['NT'], $this->suburbs['SA'], $this->suburbs['TAS'], $this->suburbs['VIC'], $this->suburbs['WA'], $this->suburb['ACT']);
249+
$suburbs = array_merge($this->suburbs['QLD'], $this->suburbs['NSW'], $this->suburbs['NT'], $this->suburbs['SA'], $this->suburbs['TAS'], $this->suburbs['VIC'], $this->suburbs['WA'], $this->suburbs['ACT']);
250250
}
251251

252252
for ($i = 0; $i < count($suburbs); $i++)
@@ -465,4 +465,4 @@ protected function replaceLast(string $search, string $replace, string $subject)
465465
return $subject;
466466
}
467467

468-
}
468+
}

0 commit comments

Comments
 (0)