projectbase/app/Cells/CommonCell.php
2026-02-10 15:00:16 +09:00

16 lines
218 B
PHP

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