mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-31 01:34:12 +02:00
AssignFilterHelper: fix error message
This commit is contained in:
parent
f7403f43d0
commit
15b52a323c
@ -100,12 +100,12 @@ class AssignFilterHelper
|
||||
|
||||
return true;
|
||||
} else {
|
||||
$class = get_class($filter);
|
||||
$parts = preg_split('~\\~', $class);
|
||||
$class = \get_class($filter);
|
||||
$parts = \preg_split('/\\\/', $class);
|
||||
|
||||
throw new NotImplementedError(
|
||||
'Matching for Filter of type "%s" is not implemented',
|
||||
end($parts)
|
||||
\end($parts)
|
||||
);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user