dbmsv2/app/Cells/Part/PartCell.php
2025-09-25 18:31:14 +09:00

16 lines
241 B
PHP

<?php
namespace App\Cells\Part;
use App\Cells\CommonCell;
use App\Services\CommonService;
abstract class PartCell extends CommonCell
{
protected function __construct(CommonService $service)
{
parent::__construct($service);
}
}