mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-02 11:42:42 +01:00
(stable) Fix an issue with ClassMap handling of DivinerAtomizers
Fixes T9193.
This commit is contained in:
parent
e470b6bee2
commit
de2aa64acf
1 changed files with 3 additions and 2 deletions
|
@ -420,9 +420,10 @@ final class DivinerGenerateWorkflow extends DivinerWorkflow {
|
||||||
|
|
||||||
$atomizer_versions = array();
|
$atomizer_versions = array();
|
||||||
foreach ($atomizers as $atomizer) {
|
foreach ($atomizers as $atomizer) {
|
||||||
$atomizer_versions[$atomizer['name']] = call_user_func(
|
$name = get_class($atomizer);
|
||||||
|
$atomizer_versions[$name] = call_user_func(
|
||||||
array(
|
array(
|
||||||
$atomizer['name'],
|
$name,
|
||||||
'getAtomizerVersion',
|
'getAtomizerVersion',
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue