Skip to content

Commit

Permalink
Dev: CS Fixer run
Browse files Browse the repository at this point in the history
  • Loading branch information
AllanJard committed Dec 18, 2024
1 parent 70504ad commit 1b7922b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions Database/Query.php
Original file line number Diff line number Diff line change
Expand Up @@ -481,6 +481,7 @@ public function pkey($pkey = null)

if (is_string($pkey)) {
$this->_pkey = [$pkey];

return $this;
}

Expand Down
8 changes: 4 additions & 4 deletions Editor.php
Original file line number Diff line number Diff line change
Expand Up @@ -2325,11 +2325,11 @@ private function _optionsSearch($http)
/**
* Delete one or more rows from the database for an individual table.
*
* @param string $table Database table name to use
* @param array $ids Array of ids to remove
* @param string $table Database table name to use
* @param array $ids Array of ids to remove
* @param string|array|null $pkey Database column name to match the ids on for the
* delete condition. If not given the instance's base primary key is
* used.
* delete condition. If not given the instance's base primary key is
* used.
*/
private function _remove_table($table, $ids, $pkey = null)
{
Expand Down

0 comments on commit 1b7922b

Please sign in to comment.