Changeset 4042
- Timestamp:
- 03/19/08 05:55:07 (16 months ago)
- Files:
-
- 1 modified
-
branches/0.10/lib/Doctrine/Connection/Informix.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.10/lib/Doctrine/Connection/Informix.php
r3884 r4042 46 46 public function __construct(Doctrine_Manager $manager, $adapter) 47 47 { 48 // initialize all driver options49 50 48 parent::__construct($manager, $adapter); 51 49 } 50 51 /** 52 * quoteIdentifier 53 * 54 * @param string $identifier 55 * @param string $checkOption 56 * @return void 57 */ 58 public function quoteIdentifier($identifier, $checkOption = false) 59 { 60 return $identifier; 61 } 52 62 }