servermgrv2/app/Entities/CommonEntity.php
최준흠git config git config --helpgit config --global user.name 최준흠 bbd2c11f28 servermgrv2 init...1
2023-07-17 23:24:40 +09:00

14 lines
176 B
PHP

<?php
namespace App\Entities;
use CodeIgniter\Entity\Entity;
class CommonEntity extends Entity
{
public function getTitle()
{
return "CommonEntity";
}
}