for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Models;
/**
* Class PurchaseParam.
*/
class PurchaseParam
{
* Country Id.
*
* @var int
public $countryId;
* Price Point Id.
public $pricePointId;
* Payment Method Id.
public $paymentMethodId;
* Create a new Purchase Param.
* @param int $countryId
* @param int $pricePointId
* @param int $paymentMethodId
public function __construct(int $countryId, int $pricePointId, int $paymentMethodId)
$this->countryId = $countryId;
$this->pricePointId = $pricePointId;
$this->paymentMethodId = $paymentMethodId;
}