diff --git a/src/DBAL/Types/FloatType.php b/src/DBAL/Types/FloatType.php index cbb0a9c..2bb15de 100644 --- a/src/DBAL/Types/FloatType.php +++ b/src/DBAL/Types/FloatType.php @@ -6,7 +6,7 @@ namespace Twister\DBAL\Types; -class ArrayType extends BaseType +class FloatType extends BaseType { public $decimals = null; // public $unsigned = null; // do we really need this ??? Could be implemented inside the entity classes! I think MySQL STILL accepts negatives anyway! diff --git a/src/DBAL/Types/IntegerType.php b/src/DBAL/Types/IntegerType.php index fc236c3..1de6592 100644 --- a/src/DBAL/Types/IntegerType.php +++ b/src/DBAL/Types/IntegerType.php @@ -6,7 +6,7 @@ namespace Twister\DBAL\Types; -class ArrayType extends BaseType +class IntegerType extends BaseType { public $min = null; public $max = null; diff --git a/src/DBAL/Types/StringType.php b/src/DBAL/Types/StringType.php index c6e4fa3..1f865c8 100644 --- a/src/DBAL/Types/StringType.php +++ b/src/DBAL/Types/StringType.php @@ -6,7 +6,7 @@ namespace Twister\DBAL\Types; -class ArrayType extends BaseType +class StringType extends BaseType { const CHARSET_BINARY = 0; // unused (the charset of BINARY fields is NULL!) ... we need to put BINARY data types inside string, for the maxlength ... const CHARSET_LATIN1 = 1;