shaxzodbek-uzb / pay-uz

Для национальных платежных систем в Узбекистане
https://t.me/+OIrx3BsQw_BiMmRi
MIT License
78 stars 39 forks source link

Payme `getReport` method bug #65

Closed asia-coder closed 6 months ago

asia-coder commented 6 months ago

src/Http/Classes/Payme/Payme.php -> getReport metodidagi xatolik:

'account'      => [
    'key' => 1 * $row[$this->config['key']], // account parameters to identify client/order/service
],

key - array key name ni configdan olinadigan qilib qo'yish kerak:

'account'      => [
    "{$this->config['key']}" => 1 * $row[$this->config['key']], // account parameters to identify client/order/service
],