/home/brandsfa/public_html/app/Services/ProductCompareService.php
<?php

namespace App\Services;

class ProductCompareService
{
    public function getAddData(int|string $customerId,int|string $productId):array
    {
        return [
            'user_id' => $customerId,
            'product_id' => $productId,
        ];
    }
}