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."
This commit is contained in:
Christopher Darling 2015-03-04 11:47:28 +00:00
parent 7b7a5e0312
commit 140895d355

View File

@ -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.");
}
/**