HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/apklausos/application/datavalueobjects/CopyQuestionTextValues.php
<?php

namespace LimeSurvey\Datavalueobjects;

/**
 * Class CopyQuestionTextValues
 *
 * This class represents the texts values to use when copying a question
 *
 * @package LimeSurvey\Datavalueobjects
 */
class CopyQuestionTextValues
{
    /** @var string the question text */
    private $questionText;

    /** @var string the question help text */
    private $help;

    /**
     * @param string $question
     * @param string $help
     */
    public function __construct($questionText = '', $help = '') {
        $this->questionText = $questionText;
        $this->help = $help;
    }

    /**
     * @return string
     */
    public function getQuestionText(): string
    {
        return $this->questionText;
    }

    /**
     * @param string $questionText
     */
    public function setQuestionText(string $questionText): void
    {
        $this->questionText = $questionText;
    }

    /**
     * @return string
     */
    public function getHelp(): string
    {
        return $this->help;
    }

    /**
     * @param string $help
     */
    public function setHelp(string $help): void
    {
        $this->help = $help;
    }
}