dbmsv3/app/Cells/Equipment/EquipmentCell.php
2025-10-01 14:03:52 +09:00

16 lines
251 B
PHP

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