From 20532fe3c28ae1be49d2d7390cf4a942d2f669f7 Mon Sep 17 00:00:00 2001 From: meus Date: Mon, 30 Jul 2007 19:44:04 +0000 Subject: [PATCH] fixed the typo --- manual/new/docs/en/mapping-relations.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual/new/docs/en/mapping-relations.txt b/manual/new/docs/en/mapping-relations.txt index 56677d187..91e0db5ad 100644 --- a/manual/new/docs/en/mapping-relations.txt +++ b/manual/new/docs/en/mapping-relations.txt @@ -358,7 +358,7 @@ 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" => + $this->setSubclasses("User" => array("type" => 1"), "Group" => array("type" => 2)); } }