Skip to content

Commit

Permalink
Fix inadvertant PHPCS complaint from rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
ghalse committed May 10, 2024
1 parent f872a43 commit 228eab9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Auth/Process/AttributeFromSQL.php
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,8 @@ public function process(array &$state): void
try {
$sth = $db->prepare(
'SELECT ' . $iq . 'attribute' . $iq . ',' . $iq . 'value' . $iq . ' FROM ' .
$this->table .
' WHERE ' . $iq . 'uid' . $iq . '=? AND (' . $iq . 'sp' . $iq . '=\'%\' OR ' . $iq . 'sp' . $iq . '=?)' .
$this->table . ' WHERE ' .
$iq . 'uid' . $iq . '=? AND (' . $iq . 'sp' . $iq . '=\'%\' OR ' . $iq . 'sp' . $iq . '=?)' .
($this->ignoreExpiry ? '' : ' AND ' . $iq . 'expires' . $iq . '>CURRENT_DATE') .
';'
);
Expand Down

0 comments on commit 228eab9

Please sign in to comment.