Your project must not contain invalid function or method calls

More information: https://insight.symfony.com/what-we-analyse/php.invalid_call

in src/Container.php, line 122
  1. $this->factories[$id] = \is_object($factory) && ! ($factory instanceof \Closure)
  2. ? \get_class($factory)
  3. : $factory;
  4. $entry = $this->resolver->resolve($this->factories[$id]);
    Parameter #1 $entry of method Projek\Container\Resolver<Closure|list<object|string>|string,array<int, mixed>>::resolve() expects (callable(): mixed)|object|string, mixed given.
    Time to fix: about 9 minutes
    Read doc Permalink Copy Prompt
    Last edited by Fery Wardiyanto
  5. if (\is_object($entry) && $this->isInjectable($entry)) {
  6. $entry->setContainer($this);
  7. }