Skip to content

Commit 8077f2f

Browse files
committed
fix
1 parent ec40207 commit 8077f2f

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

system/Database/BaseConnection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1604,7 +1604,7 @@ abstract public function insertID();
16041604
/**
16051605
* Generates the SQL for listing tables in a platform-dependent manner.
16061606
*
1607-
* @param null|string $tableName If $tableName is provided will return only this table if exists.
1607+
* @param string|null $tableName If $tableName is provided will return only this table if exists.
16081608
*
16091609
* @return false|string
16101610
*/

system/Database/MySQLi/Connection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ public function escapeLikeStringDirect($str)
369369
* Generates the SQL for listing tables in a platform-dependent manner.
370370
* Uses escapeLikeStringDirect().
371371
*
372-
* @param null|string $tableName If $tableName is provided will return only this table if exists.
372+
* @param string|null $tableName If $tableName is provided will return only this table if exists.
373373
*/
374374
protected function _listTables(bool $prefixLimit = false, ?string $tableName = null): string
375375
{

system/Database/OCI8/Connection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ public function affectedRows(): int
243243
/**
244244
* Generates the SQL for listing tables in a platform-dependent manner.
245245
*
246-
* @param null|string $tableName If $tableName is provided will return only this table if exists.
246+
* @param string|null $tableName If $tableName is provided will return only this table if exists.
247247
*/
248248
protected function _listTables(bool $prefixLimit = false, ?string $tableName = null): string
249249
{

system/Database/Postgre/Connection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ protected function _escapeString(string $str): string
205205
/**
206206
* Generates the SQL for listing tables in a platform-dependent manner.
207207
*
208-
* @param null|string $tableName If $tableName is provided will return only this table if exists.
208+
* @param string|null $tableName If $tableName is provided will return only this table if exists.
209209
*/
210210
protected function _listTables(bool $prefixLimit = false, ?string $tableName = null): string
211211
{

system/Database/SQLSRV/Connection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ public function insertID(): int
184184
/**
185185
* Generates the SQL for listing tables in a platform-dependent manner.
186186
*
187-
* @param null|string $tableName If $tableName is provided will return only this table if exists.
187+
* @param string|null $tableName If $tableName is provided will return only this table if exists.
188188
*/
189189
protected function _listTables(bool $prefixLimit = false, ?string $tableName = null): string
190190
{

system/Database/SQLite3/Connection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ protected function _escapeString(string $str): string
161161
/**
162162
* Generates the SQL for listing tables in a platform-dependent manner.
163163
*
164-
* @param null|string $tableName If $tableName is provided will return only this table if exists.
164+
* @param string|null $tableName If $tableName is provided will return only this table if exists.
165165
*/
166166
protected function _listTables(bool $prefixLimit = false, ?string $tableName = null): string
167167
{

system/Test/Mock/MockConnection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ public function insertID(): int
180180
/**
181181
* Generates the SQL for listing tables in a platform-dependent manner.
182182
*
183-
* @param null|string $tableName If $tableName is provided will return only this table if exists.
183+
* @param string|null $tableName If $tableName is provided will return only this table if exists.
184184
*/
185185
protected function _listTables(bool $constrainByPrefix = false, ?string $tableName = null): string
186186
{

0 commit comments

Comments
 (0)