17 lines
322 B
PHP
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();
|
|
}
|
|
}
|