1
0
mirror of https://github.com/flarum/core.git synced 2025-08-03 15:07:53 +02:00

Fix absence of variable reference

This commit is contained in:
Toby Zerner
2018-04-11 10:03:51 +09:30
parent 46f80e8d72
commit f51e29ff4c

View File

@@ -36,6 +36,6 @@ class Sending
public function __construct(BlueprintInterface $blueprint, array &$users) public function __construct(BlueprintInterface $blueprint, array &$users)
{ {
$this->blueprint = $blueprint; $this->blueprint = $blueprint;
$this->users = $users; $this->users = &$users;
} }
} }