composer update
This commit is contained in:
@@ -2,6 +2,8 @@
|
||||
|
||||
namespace Doctrine\DBAL;
|
||||
|
||||
use PDO;
|
||||
|
||||
/**
|
||||
* Contains statement fetch modes.
|
||||
*/
|
||||
@@ -15,7 +17,7 @@ final class FetchMode
|
||||
*
|
||||
* @see \PDO::FETCH_ASSOC
|
||||
*/
|
||||
public const ASSOCIATIVE = \PDO::FETCH_ASSOC;
|
||||
public const ASSOCIATIVE = PDO::FETCH_ASSOC;
|
||||
|
||||
/**
|
||||
* Specifies that the fetch method shall return each row as an array indexed
|
||||
@@ -24,7 +26,7 @@ final class FetchMode
|
||||
*
|
||||
* @see \PDO::FETCH_NUM
|
||||
*/
|
||||
public const NUMERIC = \PDO::FETCH_NUM;
|
||||
public const NUMERIC = PDO::FETCH_NUM;
|
||||
|
||||
/**
|
||||
* Specifies that the fetch method shall return each row as an array indexed
|
||||
@@ -33,7 +35,7 @@ final class FetchMode
|
||||
*
|
||||
* @see \PDO::FETCH_BOTH
|
||||
*/
|
||||
public const MIXED = \PDO::FETCH_BOTH;
|
||||
public const MIXED = PDO::FETCH_BOTH;
|
||||
|
||||
/**
|
||||
* Specifies that the fetch method shall return each row as an object with
|
||||
@@ -42,7 +44,7 @@ final class FetchMode
|
||||
*
|
||||
* @see \PDO::FETCH_OBJ
|
||||
*/
|
||||
public const STANDARD_OBJECT = \PDO::FETCH_OBJ;
|
||||
public const STANDARD_OBJECT = PDO::FETCH_OBJ;
|
||||
|
||||
/**
|
||||
* Specifies that the fetch method shall return only a single requested
|
||||
@@ -50,7 +52,7 @@ final class FetchMode
|
||||
*
|
||||
* @see \PDO::FETCH_COLUMN
|
||||
*/
|
||||
public const COLUMN = \PDO::FETCH_COLUMN;
|
||||
public const COLUMN = PDO::FETCH_COLUMN;
|
||||
|
||||
/**
|
||||
* Specifies that the fetch method shall return a new instance of the
|
||||
@@ -58,7 +60,7 @@ final class FetchMode
|
||||
*
|
||||
* @see \PDO::FETCH_CLASS
|
||||
*/
|
||||
public const CUSTOM_OBJECT = \PDO::FETCH_CLASS;
|
||||
public const CUSTOM_OBJECT = PDO::FETCH_CLASS;
|
||||
|
||||
/**
|
||||
* This class cannot be instantiated.
|
||||
|
Reference in New Issue
Block a user