Beispiel #1
0
 /**
  * {@inheritDoc}
  */
 public function __construct()
 {
     parent::__construct();
     $this->initializeDoctrineTypeMappings();
     if (!Type::hasType(MapType::NAME)) {
         Type::addType(MapType::NAME, 'Crate\\DBAL\\Types\\MapType');
     }
     if (!Type::hasType(TimestampType::NAME)) {
         Type::addType(TimestampType::NAME, 'Crate\\DBAL\\Types\\TimestampType');
     }
     Type::overrideType('array', 'Crate\\DBAL\\Types\\ArrayType');
 }
Beispiel #2
0
 /**
  * the constructor
  */
 public function __construct()
 {
     parent::__construct();
 }