From 87c1c50bfa0ca3fad9dd496ad3cff1631df8c41d Mon Sep 17 00:00:00 2001 From: "Timo A. Hummel" Date: Thu, 11 Nov 2010 01:22:30 +0800 Subject: [PATCH] Fixed documentation issue for cascade="ALL" (DDC-850) --- manual/en/annotations-reference.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual/en/annotations-reference.txt b/manual/en/annotations-reference.txt index 7b162a77c..9a54949a6 100644 --- a/manual/en/annotations-reference.txt +++ b/manual/en/annotations-reference.txt @@ -351,7 +351,7 @@ Example: [php] /** - * @ManyToOne(targetEntity="Cart", cascade="ALL", fetch="EAGER") + * @ManyToOne(targetEntity="Cart", cascade={"ALL"}, fetch="EAGER") */ private $cart;