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.
25 lines
554 B
25 lines
554 B
1 year ago
|
<?php
|
||
|
|
||
|
namespace Tests\Support\Models;
|
||
|
|
||
|
use CodeIgniter\Model;
|
||
|
|
||
|
class ExampleModel extends Model
|
||
|
{
|
||
|
protected $table = 'factories';
|
||
|
protected $primaryKey = 'id';
|
||
|
protected $returnType = 'object';
|
||
|
protected $useSoftDeletes = false;
|
||
|
protected $allowedFields = [
|
||
|
'name',
|
||
|
'uid',
|
||
|
'class',
|
||
|
'icon',
|
||
|
'summary',
|
||
|
];
|
||
|
protected $useTimestamps = true;
|
||
|
protected $validationRules = [];
|
||
|
protected $validationMessages = [];
|
||
|
protected $skipValidation = false;
|
||
|
}
|