From 1f689ae9147d0902cce8ac7641099024cfee3bcb Mon Sep 17 00:00:00 2001 From: jackbravo Date: Mon, 6 Aug 2007 16:05:28 +0000 Subject: [PATCH] Syntax error correction --- manual/new/docs/en/mapping-relations.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/manual/new/docs/en/mapping-relations.txt b/manual/new/docs/en/mapping-relations.txt index 8cb608905..9090c89a5 100644 --- a/manual/new/docs/en/mapping-relations.txt +++ b/manual/new/docs/en/mapping-relations.txt @@ -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) + )); } }