Changeset 4878 for trunk/lib/Doctrine
- Timestamp:
- 09/07/08 14:58:15 (4 months ago)
- Location:
- trunk/lib/Doctrine
- Files:
-
- 6 removed
- 1 modified
-
Connection.php (modified) (2 diffs)
-
DataDict.php (deleted)
-
Manager.php (deleted)
-
Overloadable.php (deleted)
-
Query_old.php (deleted)
-
RawSql.php (deleted)
-
Relation.php (deleted)
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/Doctrine/Connection.php
r4877 r4878 197 197 198 198 /** 199 * Sets the Configuration used by the Connection.200 *201 * @param Doctrine::Common::Configuration $config202 */203 public function setConfiguration(Doctrine_Configuration $config)204 {205 $this->_config = $config;206 }207 208 /**209 199 * Gets the Configuration used by the Connection. 210 200 * … … 217 207 } 218 208 return $this->_config; 219 }220 221 /**222 * Sets the EventManager used by the Connection.223 *224 * @param Doctrine::Common::EventManager $eventManager225 */226 public function setEventManager(Doctrine_EventManager $eventManager)227 {228 $this->_eventManager = $eventManager;229 209 } 230 210