From 140895d355cd4557dad75d375a0d33b8c3d57a97 Mon Sep 17 00:00:00 2001 From: Christopher Darling Date: Wed, 4 Mar 2015 11:47:28 +0000 Subject: [PATCH] added space after class name in InvalidArgumentException for applyMany + excludeMany "ClassNamecan't be used to filter by a list of items." => "ClassName can't be used to filter by a list of items." --- search/filters/SearchFilter.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/search/filters/SearchFilter.php b/search/filters/SearchFilter.php index 6af60ea73..e09e97dd1 100644 --- a/search/filters/SearchFilter.php +++ b/search/filters/SearchFilter.php @@ -229,7 +229,7 @@ abstract class SearchFilter extends Object { * @return DataQuery */ protected function applyMany(DataQuery $query) { - throw new InvalidArgumentException(get_class($this) . "can't be used to filter by a list of items."); + throw new InvalidArgumentException(get_class($this) . " can't be used to filter by a list of items."); } /** @@ -265,7 +265,7 @@ abstract class SearchFilter extends Object { * @return DataQuery */ protected function excludeMany(DataQuery $query) { - throw new InvalidArgumentException(get_class($this) . "can't be used to filter by a list of items."); + throw new InvalidArgumentException(get_class($this) . " can't be used to filter by a list of items."); } /**