phpan/phpstan clean up runs, minor update to DB\IO
DB\IO dbReturn method has a third parameter to set read only assoc and not number data from the query Install basic composer for trying out psalm setting phpan/phpstan for basic static checking and do basic clean up on all of the files
This commit is contained in:
@@ -423,7 +423,7 @@ class PgSQL
|
||||
{
|
||||
if (false === $limit) {
|
||||
$limit = strlen($text) - 1;
|
||||
$output = array();
|
||||
$output = array ();
|
||||
}
|
||||
if ('{}' != $text) {
|
||||
do {
|
||||
@@ -435,7 +435,7 @@ class PgSQL
|
||||
return $offset;
|
||||
}
|
||||
} else {
|
||||
$offset = $this->__dbArrayParse($text, $output[], $limit, $offset + 1);
|
||||
$offset = $this->__dbArrayParse($text, $output, $limit, $offset + 1);
|
||||
}
|
||||
} while ($limit > $offset);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user