Skip to content

Commit d8b7915

Browse files
author
Jose Ganora
committed
#WN-118# Removed extra semicolon
1 parent b1e5776 commit d8b7915

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Classes/Repositories/RegionRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function findBySlug($orgId, $slug)
3333
{
3434
$slug = strtolower($slug);
3535
$slug = str_replace(' ', '-', $slug);
36-
return $this->regModel->where('slug', $slug)->where('organisation_id', $orgId)->firstOrFail();;
36+
return $this->regModel->where('slug', $slug)->where('organisation_id', $orgId)->firstOrFail();
3737
}
3838

3939
public function mapTranslationInput($regionId, $language_code, $data)

0 commit comments

Comments
 (0)