mirror of
https://github.com/flarum/framework.git
synced 2024-11-29 21:11:55 +08:00
Fix absence of variable reference
This commit is contained in:
parent
1405de6d3e
commit
c181e6779e
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user