/home/techb158/immovalet.com/vendor/doctrine/dbal/src/Driver
NameSizeModeActions
AbstractOracleDriver/-0755rm
AbstractSQLServerDriver/-0755rm
API/-0755rm
Exception/-0755rm
IBMDB2/-0755rm
Mysqli/-0755rm
OCI8/-0755rm
PDO/-0755rm
SQLSrv/-0755rm
AbstractDB2Driver.php9570644editdlrm
AbstractException.php10920644editdlrm
AbstractMySQLDriver.php40950644editdlrm
AbstractOracleDriver.php13510644editdlrm
AbstractPostgreSQLDriver.php19390644editdlrm
AbstractSQLiteDriver.php9330644editdlrm
AbstractSQLServerDriver.php10080644editdlrm
Connection.php17300644editdlrm
Exception.php4080644editdlrm
FetchUtils.php13010644editdlrm
Middleware.php1680644editdlrm
Result.php24970644editdlrm
ServerInfoAwareConnection.php3970644editdlrm
Statement.php39290644editdlrm
Edit: /home/techb158/immovalet.com/vendor/doctrine/dbal/src/Driver/FetchUtils.php (1301B)
fetchNumeric(); if ($row === false) { return false; } return $row[0]; } /** * @return list> * * @throws Exception */ public static function fetchAllNumeric(Result $result): array { $rows = []; while (($row = $result->fetchNumeric()) !== false) { $rows[] = $row; } return $rows; } /** * @return list> * * @throws Exception */ public static function fetchAllAssociative(Result $result): array { $rows = []; while (($row = $result->fetchAssociative()) !== false) { $rows[] = $row; } return $rows; } /** * @return list * * @throws Exception */ public static function fetchFirstColumn(Result $result): array { $rows = []; while (($row = $result->fetchOne()) !== false) { $rows[] = $row; } return $rows; } }