dbmsv2/app/Cells/CommonCell.php
2025-09-10 20:23:18 +09:00

20 lines
300 B
PHP

<?php
namespace App\Cells;
use App\Services\CommonService;
abstract class CommonCell
{
protected $_service = null;
protected function __construct(CommonService $service)
{
$this->_service = $service;
}
final public function getService(): mixed
{
return $this->_service;
}
}