Fix CallbackDependency (#20158)

This commit is contained in:
Robert Korulczyk
2024-05-16 11:29:32 +02:00
committed by GitHub
parent 90c0eb02d1
commit 391997a96b

View File

@ -34,6 +34,6 @@ class CallbackDependency extends Dependency
*/
protected function generateDependencyData($cache)
{
return $this->callback();
return ($this->callback)();
}
}