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...
20
21
// @formatter:off
22
$rootNode
23
->children()
24
->booleanNode('user_context')
25
->info('whether to log or not username obtained from TokenStorage')
26
->defaultFalse()
27
->end()
28
->scalarNode('user_agent_parser')
29
->info('phpuseragent (default), native or id of custom service implementing ParserInterface interface')
30
->defaultNull()
31
->end()
32
->scalarNode('cache')
33
->info('"CacheInterface" implementing cache service ID')
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.