for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Resova\Models;
use Resova\Model;
/**
* The item questions.
*
* @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.
];
}