Flarum\Core\Command\DeleteAvatar::__construct PHP Méthode

__construct() public méthode

public __construct ( integer $userId, User $actor )
$userId integer The ID of the user to delete the avatar of.
$actor Flarum\Core\User The user performing the action.
    public function __construct($userId, User $actor)
    {
        $this->userId = $userId;
        $this->actor = $actor;
    }
DeleteAvatar