12 lines
204 B
PHP
12 lines
204 B
PHP
<?php
|
|
|
|
namespace App\Entities;
|
|
|
|
use CodeIgniter\Entity\Entity;
|
|
|
|
abstract class BaseEntity extends Entity
|
|
{
|
|
abstract public function getPrimaryKey();
|
|
abstract public function getTitle(): string;
|
|
}
|