Changeset 4665
- Timestamp:
- 07/12/08 19:36:19 (5 months ago)
- Files:
-
- 1 modified
-
branches/1.0/lib/Doctrine/Table.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/lib/Doctrine/Table.php
r4631 r4665 243 243 $this->_filters[] = new Doctrine_Record_Filter_Standard(); 244 244 $this->_repository = new Doctrine_Table_Repository($this); 245 } 245 246 $this->construct(); 247 } 248 249 /** 250 * construct 251 * Empty template method to provide concrete Table classes with the possibility 252 * to hook into the constructor procedure 253 * 254 * @return void 255 */ 256 public function construct() 257 { } 246 258 247 259 /**