From bf1cc29a2a5b4e8374973a41b293e3dbb7e91ca8 Mon Sep 17 00:00:00 2001 From: Alexander Date: Thu, 1 Dec 2011 09:46:02 +0100 Subject: [PATCH] [DDC-551] Fixed some comments --- lib/Doctrine/ORM/Query/FilterCollection.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/Doctrine/ORM/Query/FilterCollection.php b/lib/Doctrine/ORM/Query/FilterCollection.php index 72b5a757c..c28f54863 100644 --- a/lib/Doctrine/ORM/Query/FilterCollection.php +++ b/lib/Doctrine/ORM/Query/FilterCollection.php @@ -85,7 +85,7 @@ class FilterCollection /** * Enables a filter from the collection. * - * @param mixed $name Name of the filter. + * @param string $name Name of the filter. * * @throws \InvalidArgumentException If the filter does not exist. * @@ -113,7 +113,7 @@ class FilterCollection /** * Disables a filter. * - * @param mixed $name Name of the filter. + * @param string $name Name of the filter. * * @return SQLFilter The disabled filter. * @@ -135,7 +135,7 @@ class FilterCollection /** * Get an enabled filter from the collection. * - * @param mixed $name Name of the filter. + * @param string $name Name of the filter. * * @return SQLFilter The filter. *