From 95fdaf0d380ee5d6fee3eebb9288335ee69c6799 Mon Sep 17 00:00:00 2001 From: John Flatness Date: Tue, 15 Sep 2020 17:53:19 -0400 Subject: [PATCH] Remove illegal trailing function call commas (turns out they're legal in newer PHPs) --- application/src/Api/Adapter/PropertyAdapter.php | 2 +- application/src/Api/Adapter/ResourceClassAdapter.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/application/src/Api/Adapter/PropertyAdapter.php b/application/src/Api/Adapter/PropertyAdapter.php index 8d28eca331..b287686125 100644 --- a/application/src/Api/Adapter/PropertyAdapter.php +++ b/application/src/Api/Adapter/PropertyAdapter.php @@ -141,7 +141,7 @@ public function buildQuery(QueryBuilder $qb, array $query) $valuesAlias = $this->createAlias(); $qb->innerJoin( 'omeka_root.values', - $valuesAlias, + $valuesAlias ); } } diff --git a/application/src/Api/Adapter/ResourceClassAdapter.php b/application/src/Api/Adapter/ResourceClassAdapter.php index 08f9938c5e..cac78371c0 100644 --- a/application/src/Api/Adapter/ResourceClassAdapter.php +++ b/application/src/Api/Adapter/ResourceClassAdapter.php @@ -132,7 +132,7 @@ public function buildQuery(QueryBuilder $qb, array $query) $valuesAlias = $this->createAlias(); $qb->innerJoin( 'omeka_root.resources', - $valuesAlias, + $valuesAlias ); } }