From 0bb09373727793f9cf89846a1c03dcf9e19913ae Mon Sep 17 00:00:00 2001 From: Benjamin Eberlei Date: Fri, 20 May 2011 21:13:25 +0200 Subject: [PATCH] Started UPGRADE_TO_2_1 document --- UPGRADE_TO_2_1 | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 UPGRADE_TO_2_1 diff --git a/UPGRADE_TO_2_1 b/UPGRADE_TO_2_1 new file mode 100644 index 000000000..bfb759ec7 --- /dev/null +++ b/UPGRADE_TO_2_1 @@ -0,0 +1,6 @@ +This document details all the possible changes that you should investigate when updating +your project from Doctrine 2.0.x to 2.1 + +## Interface for EntityRepository + +The EntityRepository now has an interface Doctrine\Common\Persistence\ObjectRepository. This means that your classes that override EntityRepository and extend find(), findOneBy() or findBy() must be adjusted to follow this interface.