Skip to content

Commit 186dd4a

Browse files
committed
fixed some deprecation messages
1 parent c5b04fe commit 186dd4a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ParserCache/ArrayParserCache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
namespace Symfony\Component\ExpressionLanguage\ParserCache;
1313

14-
@trigger_error('The '.__NAMESPACE__.'\ArrayParserCache class is deprecated since version 3.2 and will be removed in 4.0. Use the Symfony\Component\Cache\Adapter\ArrayAdapter class instead.', E_USER_DEPRECATED);
14+
@trigger_error('The '.__NAMESPACE__.'\ArrayParserCache class is deprecated since Symfony 3.2 and will be removed in 4.0. Use the Symfony\Component\Cache\Adapter\ArrayAdapter class instead.', E_USER_DEPRECATED);
1515

1616
use Symfony\Component\ExpressionLanguage\ParsedExpression;
1717

ParserCache/ParserCacheInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
namespace Symfony\Component\ExpressionLanguage\ParserCache;
1313

14-
@trigger_error('The '.__NAMESPACE__.'\ParserCacheInterface interface is deprecated since version 3.2 and will be removed in 4.0. Use Psr\Cache\CacheItemPoolInterface instead.', E_USER_DEPRECATED);
14+
@trigger_error('The '.__NAMESPACE__.'\ParserCacheInterface interface is deprecated since Symfony 3.2 and will be removed in 4.0. Use Psr\Cache\CacheItemPoolInterface instead.', E_USER_DEPRECATED);
1515

1616
use Symfony\Component\ExpressionLanguage\ParsedExpression;
1717

0 commit comments

Comments
 (0)