Merge pull request #3968 from christopherdarling/patch-2

added space after class name in InvalidArgumentException for applyMany +...
This commit is contained in:
Daniel Hensby 2015-03-04 14:26:51 +00:00
commit 79a575dba4

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