File tree Expand file tree Collapse file tree 3 files changed +13
-4
lines changed
Security/Core/Authorization Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ in 3.2 minor versions.
7
7
To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash
8
8
To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v3.2.0...v3.2.1
9
9
10
+ * 3.2.11 (2017-07-05)
11
+
12
+ * bug #23390 [ Cache] Handle APCu failures gracefully (nicolas-grekas)
13
+ * bug #23378 [ FrameworkBundle] Do not remove files from assets dir (1ed)
14
+
10
15
* 3.2.10 (2017-07-04)
11
16
12
17
* bug #23366 [ FrameworkBundle] Don't get() private services from debug: router (chalasr)
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