EvilFreelancer/resova-api-php

View on GitHub
src/Models/Question.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Resova\Models;

use Resova\Model;

/**
 * The item questions.
 *
 * @codeCoverageIgnore
 * @package Resova\Models
 */
class Question extends Model
{
    public function allowed(): array
    {
        return [
            'question_id'    => 'int', // The unique id for the item booking question object.
            'question_value' => 'string', // The value of the question.
        ];
    }
}