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.
34 lines
563 B
34 lines
563 B
<?php namespace Tests\Support\Models;
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
class ValidModel extends Model
|
|
{
|
|
protected $table = 'job';
|
|
|
|
protected $returnType = 'object';
|
|
|
|
protected $useSoftDeletes = false;
|
|
|
|
protected $dateFormat = 'int';
|
|
|
|
protected $allowedFields = [
|
|
'name',
|
|
'description',
|
|
];
|
|
|
|
protected $validationRules = [
|
|
'name' => [
|
|
'required',
|
|
'min_length[3]',
|
|
],
|
|
'token' => 'in_list[{id}]',
|
|
];
|
|
|
|
protected $validationMessages = [
|
|
'name' => [
|
|
'required' => 'You forgot to name the baby.',
|
|
'min_length' => 'Too short, man!',
|
|
],
|
|
];
|
|
}
|
|
|