From bf44be86a99fe2c55e8128056dc4511bce72bab1 Mon Sep 17 00:00:00 2001 From: Christian Raue Date: Mon, 10 Oct 2011 03:02:55 +0300 Subject: [PATCH] fixed typo --- lib/Doctrine/ORM/Event/PreUpdateEventArgs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Doctrine/ORM/Event/PreUpdateEventArgs.php b/lib/Doctrine/ORM/Event/PreUpdateEventArgs.php index c61e26d4c..ab1cc15de 100644 --- a/lib/Doctrine/ORM/Event/PreUpdateEventArgs.php +++ b/lib/Doctrine/ORM/Event/PreUpdateEventArgs.php @@ -90,7 +90,7 @@ class PreUpdateEventArgs extends LifecycleEventArgs if (!isset($this->_entityChangeSet[$field])) { throw new \InvalidArgumentException( "Field '".$field."' is not a valid field of the entity ". - "'".get_class($this->getEntity())."' in PreInsertUpdateEventArgs." + "'".get_class($this->getEntity())."' in PreUpdateEventArgs." ); } }