Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: replace mixed in Database doc comments #6502

Merged
merged 3 commits into from
Sep 7, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions system/Database/BaseConnection.php
Original file line number Diff line number Diff line change
Expand Up @@ -1231,9 +1231,9 @@ abstract public function affectedRows(): int;
* Escapes data based on type.
* Sets boolean and null types
*
* @param mixed $str
* @param array|bool|float|int|object|string|null $str
*
* @return mixed
* @return array|float|int|string
*/
public function escape($str)
{
Expand Down
4 changes: 2 additions & 2 deletions system/Database/ConnectionInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,9 @@ public function getLastQuery();
* Escapes data based on type.
* Sets boolean and null types.
*
* @param mixed $str
* @param array|bool|float|int|object|string|null $str
*
* @return mixed
* @return array|float|int|string
*/
public function escape($str);

Expand Down
4 changes: 2 additions & 2 deletions system/Database/Postgre/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,9 @@ public function affectedRows(): int
*
* Escapes data based on type
*
* @param mixed $str
* @param array|bool|float|int|object|string|null $str
*
* @return mixed
* @return array|float|int|string
*/
public function escape($str)
{
Expand Down