- Timestamp:
- 07/17/08 07:33:35 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/1.3/generator/classes/propel/engine/builder/om/php5/PHP5ObjectBuilder.php
r1062 r1066 498 498 protected function addConstructorBody(&$script) { 499 499 $script .= " 500 parent::__construct(); 500 501 \$this->applyDefaultValues();"; 501 502 } branches/1.3/runtime/classes/propel/om/BaseObject.php
r621 r1066 53 53 54 54 /** 55 * Empty constructor (this allows people with their own BaseObject implementation to use its constructor) 56 */ 57 public function __construct() { 58 59 } 60 61 /** 55 62 * Returns whether the object has been modified. 56 63 *
