You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add support for PHPUnit 8
* Reduce differences with a generated config file (#1)
* Bump matthiasnoback/symfony-config-test to 4.0.1
* Add branch alias to composer.json
if (!(is_string($argumentIndex) || (is_int($argumentIndex) && $argumentIndex >= 0))) {
28
26
thrownew \InvalidArgumentException('Expected either a string or a positive integer for $argumentIndex.');
29
27
}
@@ -135,7 +133,7 @@ private function evaluateArgumentValue(ContainerBuilder $container, $returnResul
135
133
sprintf(
136
134
'The value of argument with index %s (%s) was expected to an instance of Symfony\Component\DependencyInjection\Reference or \Symfony\Component\DependencyInjection\Definition',
137
135
$this->argumentIndex,
138
-
$this->exporter->export($actualValue)
136
+
$this->exporter()->export($actualValue)
139
137
)
140
138
);
141
139
}
@@ -150,7 +148,7 @@ private function evaluateArgumentValue(ContainerBuilder $container, $returnResul
150
148
sprintf(
151
149
'The referenced service class of argument with index %s (%s) was expected to be an instance of Symfony\Component\DependencyInjection\ServiceLocator',
0 commit comments