17 lines
308 B
PHP
17 lines
308 B
PHP
<?php namespace Tests\Support\Models;
|
|
|
|
use CodeIgniter\Entity;
|
|
|
|
/**
|
|
* Class SimpleEntity
|
|
*
|
|
* Simple Entity-type class for testing creating and saving entities
|
|
* in the model so we can support Entity/Repository type patterns.
|
|
*
|
|
* @package Tests\Support\Models
|
|
*/
|
|
class SimpleEntity extends Entity
|
|
{
|
|
|
|
}
|