summaryrefslogtreecommitdiffstats
path: root/lib/private/Activity/Manager.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/private/Activity/Manager.php')
-rw-r--r--lib/private/Activity/Manager.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/private/Activity/Manager.php b/lib/private/Activity/Manager.php
index 792dea4cff5..1b64fa59a91 100644
--- a/lib/private/Activity/Manager.php
+++ b/lib/private/Activity/Manager.php
@@ -231,7 +231,7 @@ class Manager implements IManager {
* @param \Closure $callable
*/
public function registerConsumer(\Closure $callable) {
- array_push($this->consumersClosures, $callable);
+ $this->consumersClosures[] = $callable;
$this->consumers = [];
}
@@ -244,7 +244,7 @@ class Manager implements IManager {
* @param \Closure $callable
*/
public function registerExtension(\Closure $callable) {
- array_push($this->extensionsClosures, $callable);
+ $this->extensionsClosures[] = $callable;
$this->extensions = [];
}