15 lines
226 B
PHP
15 lines
226 B
PHP
<?php
|
|
|
|
namespace App\Entities;
|
|
|
|
use CodeIgniter\Entity\Entity;
|
|
use JsonSerializable;
|
|
|
|
class CommonEntity extends Entity implements JsonSerializable
|
|
{
|
|
public function getTitle()
|
|
{
|
|
return "CommonEntity";
|
|
}
|
|
}
|