Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
76a8caec
Unverified
Commit
76a8caec
authored
May 29, 2020
by
Sergei Morozov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix deprecation message for Statement::fetchAll()
parent
23e569ea
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
11 additions
and
11 deletions
+11
-11
ArrayStatement.php
lib/Doctrine/DBAL/Cache/ArrayStatement.php
+1
-1
ResultCacheStatement.php
lib/Doctrine/DBAL/Cache/ResultCacheStatement.php
+1
-1
DB2Statement.php
lib/Doctrine/DBAL/Driver/IBMDB2/DB2Statement.php
+1
-1
MysqliStatement.php
lib/Doctrine/DBAL/Driver/Mysqli/MysqliStatement.php
+1
-1
OCI8Statement.php
lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php
+1
-1
PDOStatement.php
lib/Doctrine/DBAL/Driver/PDOStatement.php
+1
-1
ResultStatement.php
lib/Doctrine/DBAL/Driver/ResultStatement.php
+1
-1
SQLAnywhereStatement.php
...Doctrine/DBAL/Driver/SQLAnywhere/SQLAnywhereStatement.php
+1
-1
SQLSrvStatement.php
lib/Doctrine/DBAL/Driver/SQLSrv/SQLSrvStatement.php
+1
-1
Statement.php
lib/Doctrine/DBAL/Portability/Statement.php
+1
-1
Statement.php
lib/Doctrine/DBAL/Statement.php
+1
-1
No files found.
lib/Doctrine/DBAL/Cache/ArrayStatement.php
View file @
76a8caec
...
@@ -124,7 +124,7 @@ class ArrayStatement implements IteratorAggregate, ResultStatement, ForwardCompa
...
@@ -124,7 +124,7 @@ class ArrayStatement implements IteratorAggregate, ResultStatement, ForwardCompa
/**
/**
* {@inheritdoc}
* {@inheritdoc}
*
*
* @deprecated Use fetchAllNumeric(), fetchAllAssociative() or fetchColumn() instead.
* @deprecated Use fetchAllNumeric(), fetchAllAssociative() or fetch
First
Column() instead.
*/
*/
public
function
fetchAll
(
$fetchMode
=
null
,
$fetchArgument
=
null
,
$ctorArgs
=
null
)
public
function
fetchAll
(
$fetchMode
=
null
,
$fetchArgument
=
null
,
$ctorArgs
=
null
)
{
{
...
...
lib/Doctrine/DBAL/Cache/ResultCacheStatement.php
View file @
76a8caec
...
@@ -176,7 +176,7 @@ class ResultCacheStatement implements IteratorAggregate, ResultStatement, Forwar
...
@@ -176,7 +176,7 @@ class ResultCacheStatement implements IteratorAggregate, ResultStatement, Forwar
/**
/**
* {@inheritdoc}
* {@inheritdoc}
*
*
* @deprecated Use fetchAllNumeric(), fetchAllAssociative() or fetchColumn() instead.
* @deprecated Use fetchAllNumeric(), fetchAllAssociative() or fetch
First
Column() instead.
*/
*/
public
function
fetchAll
(
$fetchMode
=
null
,
$fetchArgument
=
null
,
$ctorArgs
=
null
)
public
function
fetchAll
(
$fetchMode
=
null
,
$fetchArgument
=
null
,
$ctorArgs
=
null
)
{
{
...
...
lib/Doctrine/DBAL/Driver/IBMDB2/DB2Statement.php
View file @
76a8caec
...
@@ -312,7 +312,7 @@ class DB2Statement implements IteratorAggregate, Statement, ForwardCompatibleRes
...
@@ -312,7 +312,7 @@ class DB2Statement implements IteratorAggregate, Statement, ForwardCompatibleRes
/**
/**
* {@inheritdoc}
* {@inheritdoc}
*
*
* @deprecated Use fetchAllNumeric(), fetchAllAssociative() or fetchColumn() instead.
* @deprecated Use fetchAllNumeric(), fetchAllAssociative() or fetch
First
Column() instead.
*/
*/
public
function
fetchAll
(
$fetchMode
=
null
,
$fetchArgument
=
null
,
$ctorArgs
=
null
)
public
function
fetchAll
(
$fetchMode
=
null
,
$fetchArgument
=
null
,
$ctorArgs
=
null
)
{
{
...
...
lib/Doctrine/DBAL/Driver/Mysqli/MysqliStatement.php
View file @
76a8caec
...
@@ -362,7 +362,7 @@ class MysqliStatement implements IteratorAggregate, Statement, ForwardCompatible
...
@@ -362,7 +362,7 @@ class MysqliStatement implements IteratorAggregate, Statement, ForwardCompatible
/**
/**
* {@inheritdoc}
* {@inheritdoc}
*
*
* @deprecated Use fetchAllNumeric(), fetchAllAssociative() or fetchColumn() instead.
* @deprecated Use fetchAllNumeric(), fetchAllAssociative() or fetch
First
Column() instead.
*/
*/
public
function
fetchAll
(
$fetchMode
=
null
,
$fetchArgument
=
null
,
$ctorArgs
=
null
)
public
function
fetchAll
(
$fetchMode
=
null
,
$fetchArgument
=
null
,
$ctorArgs
=
null
)
{
{
...
...
lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php
View file @
76a8caec
...
@@ -468,7 +468,7 @@ class OCI8Statement implements IteratorAggregate, Statement, ForwardCompatibleRe
...
@@ -468,7 +468,7 @@ class OCI8Statement implements IteratorAggregate, Statement, ForwardCompatibleRe
/**
/**
* {@inheritdoc}
* {@inheritdoc}
*
*
* @deprecated Use fetchAllNumeric(), fetchAllAssociative() or fetchColumn() instead.
* @deprecated Use fetchAllNumeric(), fetchAllAssociative() or fetch
First
Column() instead.
*/
*/
public
function
fetchAll
(
$fetchMode
=
null
,
$fetchArgument
=
null
,
$ctorArgs
=
null
)
public
function
fetchAll
(
$fetchMode
=
null
,
$fetchArgument
=
null
,
$ctorArgs
=
null
)
{
{
...
...
lib/Doctrine/DBAL/Driver/PDOStatement.php
View file @
76a8caec
...
@@ -156,7 +156,7 @@ class PDOStatement extends \PDOStatement implements Statement, ForwardCompatible
...
@@ -156,7 +156,7 @@ class PDOStatement extends \PDOStatement implements Statement, ForwardCompatible
/**
/**
* {@inheritdoc}
* {@inheritdoc}
*
*
* @deprecated Use fetchAllNumeric(), fetchAllAssociative() or fetchColumn() instead.
* @deprecated Use fetchAllNumeric(), fetchAllAssociative() or fetch
First
Column() instead.
*/
*/
public
function
fetchAll
(
$fetchMode
=
null
,
$fetchArgument
=
null
,
$ctorArgs
=
null
)
public
function
fetchAll
(
$fetchMode
=
null
,
$fetchArgument
=
null
,
$ctorArgs
=
null
)
{
{
...
...
lib/Doctrine/DBAL/Driver/ResultStatement.php
View file @
76a8caec
...
@@ -71,7 +71,7 @@ interface ResultStatement extends Traversable
...
@@ -71,7 +71,7 @@ interface ResultStatement extends Traversable
/**
/**
* Returns an array containing all of the result set rows.
* Returns an array containing all of the result set rows.
*
*
* @deprecated Use fetchAllNumeric(), fetchAllAssociative() or fetchColumn() instead.
* @deprecated Use fetchAllNumeric(), fetchAllAssociative() or fetch
First
Column() instead.
*
*
* @param int|null $fetchMode Controls how the next row will be returned to the caller.
* @param int|null $fetchMode Controls how the next row will be returned to the caller.
* The value must be one of the {@link \Doctrine\DBAL\FetchMode} constants,
* The value must be one of the {@link \Doctrine\DBAL\FetchMode} constants,
...
...
lib/Doctrine/DBAL/Driver/SQLAnywhere/SQLAnywhereStatement.php
View file @
76a8caec
...
@@ -258,7 +258,7 @@ class SQLAnywhereStatement implements IteratorAggregate, Statement, ForwardCompa
...
@@ -258,7 +258,7 @@ class SQLAnywhereStatement implements IteratorAggregate, Statement, ForwardCompa
/**
/**
* {@inheritdoc}
* {@inheritdoc}
*
*
* @deprecated Use fetchAllNumeric(), fetchAllAssociative() or fetchColumn() instead.
* @deprecated Use fetchAllNumeric(), fetchAllAssociative() or fetch
First
Column() instead.
*/
*/
public
function
fetchAll
(
$fetchMode
=
null
,
$fetchArgument
=
null
,
$ctorArgs
=
null
)
public
function
fetchAll
(
$fetchMode
=
null
,
$fetchArgument
=
null
,
$ctorArgs
=
null
)
{
{
...
...
lib/Doctrine/DBAL/Driver/SQLSrv/SQLSrvStatement.php
View file @
76a8caec
...
@@ -390,7 +390,7 @@ class SQLSrvStatement implements IteratorAggregate, Statement, ForwardCompatible
...
@@ -390,7 +390,7 @@ class SQLSrvStatement implements IteratorAggregate, Statement, ForwardCompatible
/**
/**
* {@inheritdoc}
* {@inheritdoc}
*
*
* @deprecated Use fetchAllNumeric(), fetchAllAssociative() or fetchColumn() instead.
* @deprecated Use fetchAllNumeric(), fetchAllAssociative() or fetch
First
Column() instead.
*/
*/
public
function
fetchAll
(
$fetchMode
=
null
,
$fetchArgument
=
null
,
$ctorArgs
=
null
)
public
function
fetchAll
(
$fetchMode
=
null
,
$fetchArgument
=
null
,
$ctorArgs
=
null
)
{
{
...
...
lib/Doctrine/DBAL/Portability/Statement.php
View file @
76a8caec
...
@@ -160,7 +160,7 @@ class Statement implements IteratorAggregate, DriverStatement, ForwardCompatible
...
@@ -160,7 +160,7 @@ class Statement implements IteratorAggregate, DriverStatement, ForwardCompatible
/**
/**
* {@inheritdoc}
* {@inheritdoc}
*
*
* @deprecated Use fetchAllNumeric(), fetchAllAssociative() or fetchColumn() instead.
* @deprecated Use fetchAllNumeric(), fetchAllAssociative() or fetch
First
Column() instead.
*/
*/
public
function
fetchAll
(
$fetchMode
=
null
,
$fetchArgument
=
null
,
$ctorArgs
=
null
)
public
function
fetchAll
(
$fetchMode
=
null
,
$fetchArgument
=
null
,
$ctorArgs
=
null
)
{
{
...
...
lib/Doctrine/DBAL/Statement.php
View file @
76a8caec
...
@@ -263,7 +263,7 @@ class Statement implements IteratorAggregate, DriverStatement, ForwardCompatible
...
@@ -263,7 +263,7 @@ class Statement implements IteratorAggregate, DriverStatement, ForwardCompatible
/**
/**
* {@inheritdoc}
* {@inheritdoc}
*
*
* @deprecated Use fetchAllNumeric(), fetchAllAssociative() or fetchColumn() instead.
* @deprecated Use fetchAllNumeric(), fetchAllAssociative() or fetch
First
Column() instead.
*/
*/
public
function
fetchAll
(
$fetchMode
=
null
,
$fetchArgument
=
null
,
$ctorArgs
=
null
)
public
function
fetchAll
(
$fetchMode
=
null
,
$fetchArgument
=
null
,
$ctorArgs
=
null
)
{
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment