Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sclubricants committed Aug 14, 2022
1 parent ec40207 commit 8077f2f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion system/Database/BaseConnection.php
Original file line number Diff line number Diff line change
Expand Up @@ -1604,7 +1604,7 @@ abstract public function insertID();
/**
* Generates the SQL for listing tables in a platform-dependent manner.
*
* @param null|string $tableName If $tableName is provided will return only this table if exists.
* @param string|null $tableName If $tableName is provided will return only this table if exists.
*
* @return false|string
*/
Expand Down
2 changes: 1 addition & 1 deletion system/Database/MySQLi/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ public function escapeLikeStringDirect($str)
* Generates the SQL for listing tables in a platform-dependent manner.
* Uses escapeLikeStringDirect().
*
* @param null|string $tableName If $tableName is provided will return only this table if exists.
* @param string|null $tableName If $tableName is provided will return only this table if exists.
*/
protected function _listTables(bool $prefixLimit = false, ?string $tableName = null): string
{
Expand Down
2 changes: 1 addition & 1 deletion system/Database/OCI8/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ public function affectedRows(): int
/**
* Generates the SQL for listing tables in a platform-dependent manner.
*
* @param null|string $tableName If $tableName is provided will return only this table if exists.
* @param string|null $tableName If $tableName is provided will return only this table if exists.
*/
protected function _listTables(bool $prefixLimit = false, ?string $tableName = null): string
{
Expand Down
2 changes: 1 addition & 1 deletion system/Database/Postgre/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ protected function _escapeString(string $str): string
/**
* Generates the SQL for listing tables in a platform-dependent manner.
*
* @param null|string $tableName If $tableName is provided will return only this table if exists.
* @param string|null $tableName If $tableName is provided will return only this table if exists.
*/
protected function _listTables(bool $prefixLimit = false, ?string $tableName = null): string
{
Expand Down
2 changes: 1 addition & 1 deletion system/Database/SQLSRV/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public function insertID(): int
/**
* Generates the SQL for listing tables in a platform-dependent manner.
*
* @param null|string $tableName If $tableName is provided will return only this table if exists.
* @param string|null $tableName If $tableName is provided will return only this table if exists.
*/
protected function _listTables(bool $prefixLimit = false, ?string $tableName = null): string
{
Expand Down
2 changes: 1 addition & 1 deletion system/Database/SQLite3/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ protected function _escapeString(string $str): string
/**
* Generates the SQL for listing tables in a platform-dependent manner.
*
* @param null|string $tableName If $tableName is provided will return only this table if exists.
* @param string|null $tableName If $tableName is provided will return only this table if exists.
*/
protected function _listTables(bool $prefixLimit = false, ?string $tableName = null): string
{
Expand Down
2 changes: 1 addition & 1 deletion system/Test/Mock/MockConnection.php
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public function insertID(): int
/**
* Generates the SQL for listing tables in a platform-dependent manner.
*
* @param null|string $tableName If $tableName is provided will return only this table if exists.
* @param string|null $tableName If $tableName is provided will return only this table if exists.
*/
protected function _listTables(bool $constrainByPrefix = false, ?string $tableName = null): string
{
Expand Down

0 comments on commit 8077f2f

Please sign in to comment.