File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed
Security/Core/Authorization Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 12
12
namespace Symfony \Component \DependencyInjection ;
13
13
14
14
use Symfony \Component \ExpressionLanguage \ExpressionLanguage as BaseExpressionLanguage ;
15
- use Symfony \Component \ExpressionLanguage \ParserCache \ParserCacheInterface ;
16
15
17
16
/**
18
17
* Adds some function to the default ExpressionLanguage.
23
22
*/
24
23
class ExpressionLanguage extends BaseExpressionLanguage
25
24
{
26
- public function __construct (ParserCacheInterface $ cache = null , array $ providers = array ())
25
+ /**
26
+ * {@inheritdoc}
27
+ */
28
+ public function __construct ($ cache = null , array $ providers = array ())
27
29
{
28
30
// prepend the default provider to let users override it easily
29
31
array_unshift ($ providers , new ExpressionLanguageProvider ());
Original file line number Diff line number Diff line change 12
12
namespace Symfony \Component \Security \Core \Authorization ;
13
13
14
14
use Symfony \Component \ExpressionLanguage \ExpressionLanguage as BaseExpressionLanguage ;
15
- use Symfony \Component \ExpressionLanguage \ParserCache \ParserCacheInterface ;
16
15
17
16
/**
18
17
* Adds some function to the default ExpressionLanguage.
23
22
*/
24
23
class ExpressionLanguage extends BaseExpressionLanguage
25
24
{
26
- public function __construct (ParserCacheInterface $ cache = null , array $ providers = array ())
25
+ /**
26
+ * {@inheritdoc}
27
+ */
28
+ public function __construct ($ cache = null , array $ providers = array ())
27
29
{
28
30
// prepend the default provider to let users override it easily
29
31
array_unshift ($ providers , new ExpressionLanguageProvider ());
You can’t perform that action at this time.
0 commit comments