Fix absence of variable reference

This commit is contained in:
Toby Zerner 2018-04-11 10:03:51 +09:30
parent 1405de6d3e
commit c181e6779e

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;
} }
} }