mirror of
https://github.com/codeigniter4/CodeIgniter4.git
synced 2025-02-20 11:44:28 +08:00
docs: fix/add @return types
This commit is contained in:
parent
d425bdf6df
commit
55e0a3a350
@ -3001,11 +3001,6 @@ $ignoreErrors[] = [
|
||||
'count' => 11,
|
||||
'path' => __DIR__ . '/system/Database/MySQLi/Connection.php',
|
||||
];
|
||||
$ignoreErrors[] = [
|
||||
'message' => '#^Method CodeIgniter\\\\Database\\\\MySQLi\\\\Connection\\:\\:_close\\(\\) should return mixed but return statement is missing\\.$#',
|
||||
'count' => 1,
|
||||
'path' => __DIR__ . '/system/Database/MySQLi/Connection.php',
|
||||
];
|
||||
$ignoreErrors[] = [
|
||||
'message' => '#^Only booleans are allowed in &&, int given on the left side\\.$#',
|
||||
'count' => 1,
|
||||
@ -3391,11 +3386,6 @@ $ignoreErrors[] = [
|
||||
'count' => 2,
|
||||
'path' => __DIR__ . '/system/Database/Postgre/Connection.php',
|
||||
];
|
||||
$ignoreErrors[] = [
|
||||
'message' => '#^Method CodeIgniter\\\\Database\\\\Postgre\\\\Connection\\:\\:_close\\(\\) should return mixed but return statement is missing\\.$#',
|
||||
'count' => 1,
|
||||
'path' => __DIR__ . '/system/Database/Postgre/Connection.php',
|
||||
];
|
||||
$ignoreErrors[] = [
|
||||
'message' => '#^Method CodeIgniter\\\\Database\\\\Postgre\\\\Connection\\:\\:buildDSN\\(\\) has no return type specified\\.$#',
|
||||
'count' => 1,
|
||||
@ -3756,11 +3746,6 @@ $ignoreErrors[] = [
|
||||
'count' => 1,
|
||||
'path' => __DIR__ . '/system/Database/SQLSRV/Connection.php',
|
||||
];
|
||||
$ignoreErrors[] = [
|
||||
'message' => '#^Method CodeIgniter\\\\Database\\\\SQLSRV\\\\Connection\\:\\:_close\\(\\) should return mixed but return statement is missing\\.$#',
|
||||
'count' => 1,
|
||||
'path' => __DIR__ . '/system/Database/SQLSRV/Connection.php',
|
||||
];
|
||||
$ignoreErrors[] = [
|
||||
'message' => '#^PHPDoc type string of property CodeIgniter\\\\Database\\\\SQLSRV\\\\Connection\\:\\:\\$escapeChar is not the same as PHPDoc type array\\|string of overridden property CodeIgniter\\\\Database\\\\BaseConnection\\<resource,resource\\>\\:\\:\\$escapeChar\\.$#',
|
||||
'count' => 1,
|
||||
@ -3951,11 +3936,6 @@ $ignoreErrors[] = [
|
||||
'count' => 1,
|
||||
'path' => __DIR__ . '/system/Database/SQLite3/Connection.php',
|
||||
];
|
||||
$ignoreErrors[] = [
|
||||
'message' => '#^Method CodeIgniter\\\\Database\\\\SQLite3\\\\Connection\\:\\:_close\\(\\) should return mixed but return statement is missing\\.$#',
|
||||
'count' => 1,
|
||||
'path' => __DIR__ . '/system/Database/SQLite3/Connection.php',
|
||||
];
|
||||
$ignoreErrors[] = [
|
||||
'message' => '#^Method CodeIgniter\\\\Database\\\\SQLite3\\\\Connection\\:\\:getFieldNames\\(\\) return type has no value type specified in iterable type array\\.$#',
|
||||
'count' => 1,
|
||||
@ -8661,11 +8641,6 @@ $ignoreErrors[] = [
|
||||
'count' => 1,
|
||||
'path' => __DIR__ . '/system/Test/Mock/MockConnection.php',
|
||||
];
|
||||
$ignoreErrors[] = [
|
||||
'message' => '#^Method CodeIgniter\\\\Test\\\\Mock\\\\MockConnection\\:\\:_close\\(\\) should return mixed but return statement is missing\\.$#',
|
||||
'count' => 1,
|
||||
'path' => __DIR__ . '/system/Test/Mock/MockConnection.php',
|
||||
];
|
||||
$ignoreErrors[] = [
|
||||
'message' => '#^Method CodeIgniter\\\\Test\\\\Mock\\\\MockConnection\\:\\:_fieldData\\(\\) return type has no value type specified in iterable type array\\.$#',
|
||||
'count' => 1,
|
||||
|
@ -479,7 +479,7 @@ abstract class BaseConnection implements ConnectionInterface
|
||||
/**
|
||||
* Platform dependent way method for closing the connection.
|
||||
*
|
||||
* @return mixed
|
||||
* @return void
|
||||
*/
|
||||
abstract protected function _close();
|
||||
|
||||
|
@ -246,6 +246,8 @@ class Connection extends BaseConnection
|
||||
|
||||
/**
|
||||
* Close the database connection.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
protected function _close()
|
||||
{
|
||||
|
@ -146,6 +146,8 @@ class Connection extends BaseConnection
|
||||
|
||||
/**
|
||||
* Close the database connection.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
protected function _close()
|
||||
{
|
||||
|
@ -173,6 +173,8 @@ class Connection extends BaseConnection
|
||||
|
||||
/**
|
||||
* Close the database connection.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
protected function _close()
|
||||
{
|
||||
|
@ -110,6 +110,8 @@ class Connection extends BaseConnection
|
||||
|
||||
/**
|
||||
* Close the database connection.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
protected function _close()
|
||||
{
|
||||
|
@ -220,6 +220,8 @@ class MockConnection extends BaseConnection
|
||||
|
||||
/**
|
||||
* Close the connection.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
protected function _close()
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user