We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dcec2b3 commit 236644fCopy full SHA for 236644f
ExpressionLanguage.php
@@ -12,7 +12,6 @@
12
namespace Symfony\Component\DependencyInjection;
13
14
use Symfony\Component\ExpressionLanguage\ExpressionLanguage as BaseExpressionLanguage;
15
-use Symfony\Component\ExpressionLanguage\ParserCache\ParserCacheInterface;
16
17
/**
18
* Adds some function to the default ExpressionLanguage.
@@ -23,7 +22,10 @@
23
22
*/
24
class ExpressionLanguage extends BaseExpressionLanguage
25
{
26
- public function __construct(ParserCacheInterface $cache = null, array $providers = array())
+ /**
+ * {@inheritdoc}
27
+ */
28
+ public function __construct($cache = null, array $providers = array())
29
30
// prepend the default provider to let users override it easily
31
array_unshift($providers, new ExpressionLanguageProvider());
0 commit comments