33
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-12-22 19:09:00 +00:00

Merge pull request #302 from richard67/patch-1

Fix PHPCS errors from previous commit "Add a label filter"
This commit is contained in:
Roland Dalmulder 2020-10-12 16:08:08 +02:00 committed by GitHub
commit 1089772eec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -236,7 +236,6 @@ class PullsModel extends AbstractModel
. $db->quoteName('pulls.pull_id')
);
// Filter by search
$search = $this->getState()->get('filter.search');
@ -332,7 +331,7 @@ class PullsModel extends AbstractModel
->group($db->quoteName('pulls_labels.pull_id'));
$query->leftJoin(
'(' . $labelQuery->__toString() . ')' . ' AS ' . $db->quoteName(
'(' . $labelQuery->__toString() . ') AS ' . $db->quoteName(
'pulls_labels'
)
. ' ON ' . $db->quoteName('pulls_labels.pull_id') . ' = '