diff options
author | Fabien Potencier <fabien.potencier@gmail.com> | 2016-03-12 18:53:09 +0100 |
---|---|---|
committer | Fabien Potencier <fabien.potencier@gmail.com> | 2016-03-12 18:53:09 +0100 |
commit | 7dbb63e02629f9223fb012ba34f6bf94a3a12c3f (patch) | |
tree | 2f16b72c56fe93087d36b8ed4779b347070c76f9 | |
parent | e7f57080ddb5c75e3783f346c2c5d2f1f0dddddd (diff) | |
parent | 1c62978fd43244e19b7adabc3688abdef4da4245 (diff) | |
download | symfony-security-7dbb63e02629f9223fb012ba34f6bf94a3a12c3f.zip symfony-security-7dbb63e02629f9223fb012ba34f6bf94a3a12c3f.tar.gz symfony-security-7dbb63e02629f9223fb012ba34f6bf94a3a12c3f.tar.bz2 |
minor #18119 [Hack Day] Issue for newcomers (2). Replace perfom by perform (JuanLuisGarciaBorrego)v2.3.39
This PR was merged into the 2.3 branch.
Discussion
----------
[Hack Day] Issue for newcomers (2). Replace perfom by perform
| Q | A
| ------------- | ---
| Branch | 2.3
| Bug fix? | yes
| New feature? | no
| BC breaks? | no
| Deprecations? | no
| Tests pass? | no
| Fixed tickets | #18089
| License | MIT
| Doc PR | reference to the documentation PR, if any
Commits
-------
f33f192 replace perfom by perform
-rw-r--r-- | Acl/Dbal/MutableAclProvider.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Acl/Dbal/MutableAclProvider.php b/Acl/Dbal/MutableAclProvider.php index 3baaa99..40ed471 100644 --- a/Acl/Dbal/MutableAclProvider.php +++ b/Acl/Dbal/MutableAclProvider.php @@ -253,7 +253,7 @@ class MutableAclProvider extends AclProvider implements MutableAclProviderInterf } // check properties for deleted, and created ACEs, and perform deletions - // we need to perfom deletions before updating existing ACEs, in order to + // we need to perform deletions before updating existing ACEs, in order to // preserve uniqueness of the order field if (isset($propertyChanges['classAces'])) { $this->updateOldAceProperty('classAces', $propertyChanges['classAces']); |