Flarum\Event\AvatarWillBeSaved::__construct PHP Method

__construct() public method

public __construct ( User $user, User $actor, string $path )
$user Flarum\Core\User The user whose avatar will be saved.
$actor Flarum\Core\User The user performing the action.
$path string The path to the avatar that will be saved.
    public function __construct(User $user, User $actor, $path)
    {
        $this->user = $user;
        $this->actor = $actor;
        $this->path = $path;
    }
AvatarWillBeSaved