diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2015-01-03 21:59:06 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2015-01-03 21:59:06 +0100 |
commit | 495d07a1730d12646dbcb51ed6ef5915982630bf (patch) | |
tree | 9e26fd04535580355d9b641204ed08771c8f64ff /Core/Authorization/ExpressionLanguage.php | |
parent | b1d5c3526ab1278959d1252c4cdda6b8f3a6452a (diff) | |
download | symfony-security-495d07a1730d12646dbcb51ed6ef5915982630bf.zip symfony-security-495d07a1730d12646dbcb51ed6ef5915982630bf.tar.gz symfony-security-495d07a1730d12646dbcb51ed6ef5915982630bf.tar.bz2 |
fixed typo
Diffstat (limited to 'Core/Authorization/ExpressionLanguage.php')
-rw-r--r-- | Core/Authorization/ExpressionLanguage.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Core/Authorization/ExpressionLanguage.php b/Core/Authorization/ExpressionLanguage.php index ac6a036..c2925af 100644 --- a/Core/Authorization/ExpressionLanguage.php +++ b/Core/Authorization/ExpressionLanguage.php @@ -25,7 +25,7 @@ class ExpressionLanguage extends BaseExpressionLanguage { public function __construct(ParserCacheInterface $cache = null, array $providers = array()) { - // prepend the default provider to let users overide it easily + // prepend the default provider to let users override it easily array_unshift($providers, new ExpressionLanguageProvider()); parent::__construct($cache, $providers); |