15 lines
160 B
PHP
15 lines
160 B
PHP
<?php
|
|
|
|
namespace Tests\Support;
|
|
|
|
use CodeIgniter\Entity;
|
|
|
|
class SomeEntity extends Entity
|
|
{
|
|
protected $attributes = [
|
|
'foo' => null,
|
|
'bar' => null,
|
|
];
|
|
|
|
}
|