Flarum\Core\Command\DeleteAvatar::__construct PHP Метод

__construct() публичный Метод

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