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...
23
;
24
25
$rootNode
26
1
->children()
27
1
->arrayNode('dictionaries')
28
1
->useAttributeAsKey('name')
29
1
->prototype('array')
30
1
->beforeNormalization()
31
1
->always()
32
1
->then(function ($values) {
33
if (false === \array_key_exists('type', $values)) {
34
if (false === \array_key_exists('content', $values)) {
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.