The method addSubSource() does not seem to exist on object<OAuth2Framework\B...ointResponseModeSource>.
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...
30
}
31
32
/**
33
* {@inheritdoc}
34
*/
35
protected function continueLoading(string $path, ContainerBuilder $container, array $config)
36
{
37
foreach ($config as $k => $v) {
38
$container->setParameter($path.'.'.$k, $v);
39
}
40
41
$loader = new PhpConfigFileLoader($container, new FileLocator(__DIR__.'/../../Resources/config/endpoint'));
42
$loader->load('response_mode.php');
43
}
44
45
/**
46
* {@inheritdoc}
47
*/
48
public function name(): string
49
{
50
return 'response_mode';
51
}
52
53
/**
54
* {@inheritdoc}
55
*/
56
public function getNodeDefinition(NodeDefinition $node)