Changeset 4878 for trunk/lib/Doctrine

Show
Ignore:
Timestamp:
09/07/08 14:58:15 (4 months ago)
Author:
romanb
Message:

cleanup

Location:
trunk/lib/Doctrine
Files:
6 removed
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/lib/Doctrine/Connection.php

    r4877 r4878  
    197197     
    198198    /** 
    199      * Sets the Configuration used by the Connection. 
    200      * 
    201      * @param Doctrine::Common::Configuration $config 
    202      */ 
    203     public function setConfiguration(Doctrine_Configuration $config) 
    204     { 
    205         $this->_config = $config; 
    206     } 
    207      
    208     /** 
    209199     * Gets the Configuration used by the Connection. 
    210200     * 
     
    217207        } 
    218208        return $this->_config; 
    219     } 
    220      
    221     /** 
    222      * Sets the EventManager used by the Connection. 
    223      * 
    224      * @param Doctrine::Common::EventManager $eventManager 
    225      */ 
    226     public function setEventManager(Doctrine_EventManager $eventManager) 
    227     { 
    228         $this->_eventManager = $eventManager; 
    229209    } 
    230210