vhost/app/Cells/BaseCell.php
2024-05-17 18:50:17 +09:00

17 lines
322 B
PHP

<?php
namespace App\Cells;
use App\Models\CategoryModel;
use CodeIgniter\View\Cells\Cell;
class BaseCell extends Cell
{
private $_categoryModel = null;
final protected function getCategoryModel(): CategoryModel
{
return $this->_categoryModel = $this->_categoryModel ?: new CategoryModel();
}
}