You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
488 B
30 lines
488 B
<?php namespace Tests\Support\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class ValidErrorsModel extends Model
|
|
{
|
|
protected $table = 'job';
|
|
|
|
protected $returnType = 'object';
|
|
|
|
protected $useSoftDeletes = false;
|
|
|
|
protected $dateFormat = 'int';
|
|
|
|
protected $allowedFields = [
|
|
'name',
|
|
'description',
|
|
];
|
|
|
|
protected $validationRules = [
|
|
'name' => [
|
|
'required',
|
|
'min_length[10]',
|
|
'errors' => [
|
|
'min_length' => 'Minimum Length Error',
|
|
]
|
|
],
|
|
'token' => 'in_list[{id}]',
|
|
];
|
|
}
|
|
|