Skip to content

Commit

Permalink
Merge pull request #732 from szepczynski/master
Browse files Browse the repository at this point in the history
Fix typo in package name
  • Loading branch information
goetas committed Mar 18, 2019
2 parents b140b96 + 822b836 commit 6dffb4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DependencyInjection/Configuration.php
Expand Up @@ -140,7 +140,7 @@ private function addSerializersSection(NodeBuilder $builder)
->validate()
->always(function($v) {
if (!empty($v) && !interface_exists('Symfony\Component\ExpressionLanguage\ExpressionFunctionProviderInterface')) {
throw new InvalidArgumentException('You need at least symfony/expression language v2.6 or v3.0 to use the expression evaluator features');
throw new InvalidArgumentException('You need at least symfony/expression-language v2.6 or v3.0 to use the expression evaluator features');
}
return $v;
})
Expand Down
2 changes: 1 addition & 1 deletion Tests/DependencyInjection/JMSSerializerExtensionTest.php
Expand Up @@ -439,7 +439,7 @@ public function testExpressionLanguageNotLoaded()

/**
* @expectedException \Symfony\Component\Config\Definition\Exception\InvalidConfigurationException
* @expectedExceptionMessage Invalid configuration for path "jms_serializer.expression_evaluator.id": You need at least symfony/expression language v2.6 or v3.0 to use the expression evaluator features
* @expectedExceptionMessage Invalid configuration for path "jms_serializer.expression_evaluator.id": You need at least symfony/expression-language v2.6 or v3.0 to use the expression evaluator features
*/
public function testExpressionInvalidEvaluator()
{
Expand Down

0 comments on commit 6dffb4d

Please sign in to comment.