Flarum\Event\GroupWillBeSaved::__construct PHP Method

__construct() public method

public __construct ( Group $group, User $actor, array $data )
$group Flarum\Core\Group The group that will be saved.
$actor Flarum\Core\User The user who is performing the action.
$data array The attributes to update on the group.
    public function __construct(Group $group, User $actor, array $data)
    {
        $this->group = $group;
        $this->actor = $actor;
        $this->data = $data;
    }
GroupWillBeSaved