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