Skip to content

Commit

Permalink
Remove illegal trailing function call commas
Browse files Browse the repository at this point in the history
(turns out they're legal in newer PHPs)
  • Loading branch information
zerocrates committed Sep 15, 2020
1 parent 42727a5 commit 95fdaf0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion application/src/Api/Adapter/PropertyAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ public function buildQuery(QueryBuilder $qb, array $query)
$valuesAlias = $this->createAlias();
$qb->innerJoin(
'omeka_root.values',
$valuesAlias,
$valuesAlias
);
}
}
Expand Down
2 changes: 1 addition & 1 deletion application/src/Api/Adapter/ResourceClassAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public function buildQuery(QueryBuilder $qb, array $query)
$valuesAlias = $this->createAlias();
$qb->innerJoin(
'omeka_root.resources',
$valuesAlias,
$valuesAlias
);
}
}
Expand Down

0 comments on commit 95fdaf0

Please sign in to comment.