dbmsv3/app/Cells/CommonCell.php
2025-10-01 14:03:52 +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;
}
}