The method root() does not seem to exist on object<Symfony\Component...on\Builder\TreeBuilder>.
This check looks for calls to methods that do not seem to exist on a given type.
It looks for the method on the type itself as well as in inherited classes or
implemented interfaces.
This is most likely a typographical error or the method has been renamed.
Loading history...
18
}
19
20
$rootNode
21
->children()
22
->arrayNode('exporter')
23
->addDefaultsIfNotSet()
24
->children()
25
->scalarNode('key')
26
->isRequired()
27
->cannotBeEmpty()
28
->info('Unique key that wraps all the cron configured for the current application.')
29
->example('my_symfony_app')
30
->end()
31
->scalarNode('mailto')
32
->cannotBeEmpty()
33
->info('Sets the default email address for all cron output to go to.')
This check looks for function calls that miss required arguments.