1
0
mirror of synced 2024-12-14 07:06:04 +03:00

Syntax error correction

This commit is contained in:
jackbravo 2007-08-06 16:05:28 +00:00
parent 46e5a0d2f8
commit 1f689ae914

View File

@ -358,8 +358,10 @@ class Entity extends Doctrine_Record
// this column is used for column
// aggregation inheritance
$this->hasColumn('type', 'integer', 11);
$this->setSubclasses("User" => array("type" => 1"), "Group" =>
array("type" => 2));
$this->setSubclasses(array(
"User" => array("type" => 1),
"Group" => array("type" => 2)
));
}
}