Skip to content

Commit

Permalink
Merge pull request #22 from yoomoney/release/v2.1.1
Browse files Browse the repository at this point in the history
Обновлен SDK до версии 2.2.2
  • Loading branch information
SaShaSpi authored Dec 3, 2021
2 parents bd8cfc6 + 28d8059 commit 0af2d25
Show file tree
Hide file tree
Showing 228 changed files with 20,075 additions and 1,065 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### v2.1.1 от 02.12.2021
* Обновлен SDK до версии 2.2.2

### v2.1.0 от 13.10.2021
* Замена Сбербанк Онлайн на SberPay
* Обновлен SDK до версии 2.1.7
Expand Down
4 changes: 2 additions & 2 deletions payment/YooMoneyApi/YooMoneyApi.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?php
/**
* Version: 2.1.0
* Version: 2.1.1
* License: Любое использование Вами программы означает полное и безоговорочное принятие Вами условий лицензионного договора, размещенного по адресу https://yoomoney.ru/doc.xml?id=527132 (далее – «Лицензионный договор»). Если Вы не принимаете условия Лицензионного договора в полном объёме, Вы не имеете права использовать программу в каких-либо целях.
*/

require_once 'api/Simpla.php';
require_once 'autoload.php';
define('YOOMONEY_MODULE_VERSION', '2.1.0');
define('YOOMONEY_MODULE_VERSION', '2.1.1');

use YooKassa\Client;
use YooKassa\Model\Payment;
Expand Down
2 changes: 1 addition & 1 deletion payment/YooMoneyApi/settings.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<module>
<name>
ЮKassa (версия 2.1.0)
ЮKassa (версия 2.1.1)
</name>
<settings>
<variable>yoomoney_shopid</variable>
Expand Down
4 changes: 3 additions & 1 deletion payment/YooMoneyApi/vendor/composer/ClassLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ public function unregister()
* Loads the given class or interface.
*
* @param string $class The name of the class
* @return bool|null True if loaded, null otherwise
* @return true|null True if loaded, null otherwise
*/
public function loadClass($class)
{
Expand All @@ -347,6 +347,8 @@ public function loadClass($class)

return true;
}

return null;
}

/**
Expand Down
Loading

0 comments on commit 0af2d25

Please sign in to comment.