Gianluigi Mammarella
Gianluigi Mammarella
I simple fix it by replacing on JMS\DiExtraBundle\Generator\DefinitionInjectorGenerator.php at line 83: ``` php $writer->writeln('$instance = new \\'.$def->getClass().$this->dumpArguments($def->getArguments()).';'); ``` with this: ``` php $writer->writeln('$instance = new \\'.$className.$this->dumpArguments($def->getArguments()).';'); ``` Could it be...
@tknuppe your solution seems to work good. I only overrided the method in my FooFormFlow which extends from the bundle base FormFlow class and leave the parent logic. The code:...
@VladoPortos @kahirokunn @Zvikan it worked for me if I comment the entire line instead of putting value to false: `# enable_aws_cloudwatch_metrics = false` it works ` enable_aws_cloudwatch_metrics = false` it...