You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'entityManagerDecoratorClass' => Expect::string()->assert(fn ($input) =>is_a($input, EntityManagerDecorator::class, true), 'EntityManager decorator class must be subclass of ' . EntityManagerDecorator::class),
101
-
'configurationClass' => Expect::string(Configuration::class)->assert(fn ($input) =>is_a($input, Configuration::class, true), 'Configuration class must be subclass of ' . Configuration::class),
100
+
'entityManagerDecoratorClass' => Expect::string()->assert(staticfn (mixed$input): bool => is_string($input) &&is_a($input, EntityManagerDecorator::class, true), 'EntityManager decorator class must be subclass of ' . EntityManagerDecorator::class),
101
+
'configurationClass' => Expect::string(Configuration::class)->assert(staticfn (mixed$input): bool => is_string($input) &&is_a($input, Configuration::class, true), 'Configuration class must be subclass of ' . Configuration::class),
0 commit comments