composer update

This commit is contained in:
Manish Verma
2018-12-05 10:50:52 +05:30
parent 9eabcacfa7
commit 4addd1e9c6
3328 changed files with 156676 additions and 138988 deletions

View File

@@ -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.