AssignFilterHelper: fix error message

This commit is contained in:
Thomas Gelf 2020-02-12 14:52:03 +01:00
parent f7403f43d0
commit 15b52a323c

View File

@ -100,12 +100,12 @@ class AssignFilterHelper
return true; return true;
} else { } else {
$class = get_class($filter); $class = \get_class($filter);
$parts = preg_split('~\\~', $class); $parts = \preg_split('/\\\/', $class);
throw new NotImplementedError( throw new NotImplementedError(
'Matching for Filter of type "%s" is not implemented', 'Matching for Filter of type "%s" is not implemented',
end($parts) \end($parts)
); );
} }
} }