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:
@@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user