2020-05-27 18:46:16 +02:00
|
|
|
<?php namespace Tests\Support\Models;
|
|
|
|
|
|
|
|
use CodeIgniter\Model;
|
|
|
|
|
|
|
|
class ExampleModel extends Model
|
|
|
|
{
|
2020-08-04 11:25:22 +00:00
|
|
|
protected $table = 'factories';
|
|
|
|
protected $primaryKey = 'id';
|
2020-05-27 18:46:16 +02:00
|
|
|
|
2020-08-04 11:25:22 +00:00
|
|
|
protected $returnType = 'object';
|
|
|
|
protected $useSoftDeletes = false;
|
2020-05-27 18:46:16 +02:00
|
|
|
|
2020-08-04 11:25:22 +00:00
|
|
|
protected $allowedFields = ['name', 'uid', 'class', 'icon', 'summary'];
|
2020-05-27 18:46:16 +02:00
|
|
|
|
2020-08-04 11:25:22 +00:00
|
|
|
protected $useTimestamps = true;
|
2020-05-27 18:46:16 +02:00
|
|
|
|
2020-08-04 11:25:22 +00:00
|
|
|
protected $validationRules = [];
|
|
|
|
protected $validationMessages = [];
|
|
|
|
protected $skipValidation = false;
|
2020-05-27 18:46:16 +02:00
|
|
|
}
|