|
Revision 3048, 389 bytes
(checked in by jwage, 14 months ago)
|
|
Clean up, initial entry of root txt files, fixed a few broken unit tests. New documentation.
|
| Line | |
|---|
| 1 | <?php |
|---|
| 2 | class ConcreteInheritanceTestParent extends Doctrine_Record |
|---|
| 3 | { |
|---|
| 4 | public function setTableDefinition() |
|---|
| 5 | { |
|---|
| 6 | $this->hasColumn('name', 'string'); |
|---|
| 7 | } |
|---|
| 8 | } |
|---|
| 9 | |
|---|
| 10 | class ConcreteInheritanceTestChild extends ConcreteInheritanceTestParent |
|---|
| 11 | { |
|---|
| 12 | public function setTableDefinition() |
|---|
| 13 | { |
|---|
| 14 | $this->hasColumn('age', 'integer'); |
|---|
| 15 | |
|---|
| 16 | parent::setTableDefinition(); |
|---|
| 17 | } |
|---|
| 18 | } |
|---|