Skip to content

Commit 4a6562c

Browse files
1.2.4
1 parent 8c32a1e commit 4a6562c

File tree

8 files changed

+28
-28
lines changed

8 files changed

+28
-28
lines changed

Api.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function __construct(Method $m) {$this->_guzzle = new HttpClient([
2525
* 2017-03-04
2626
* 2017-03-05 I make the banks names in the test mode more real (and shorter).
2727
* @used-by \Df\GingerPaymentsBase\ConfigProvider::config()
28-
* @used-by \Df\GingerPaymentsBase\T\GetIdealBanks::t01()
28+
* @used-by \Df\GingerPaymentsBase\Test\GetIdealBanks::t01()
2929
* @return array(string => string)
3030
*/
3131
function idealBanks() {return dfc($this, function() {return
@@ -79,7 +79,7 @@ function orderUpdate(array $o) {return $this->putOrder($o);}
7979
* [Kassa Compleet] An example of a response to «GET merchants/self/projects/self/»
8080
* https://mage2.pro/t/3458
8181
*
82-
* @used-by \Df\GingerPaymentsBase\T\GetMerchant::t01()
82+
* @used-by \Df\GingerPaymentsBase\Test\GetMerchant::t01()
8383
*
8484
* @param string $mId [optional]
8585
* @param string $pId [optional]

Method.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ abstract class Method extends \Df\Payment\Method {
1313
* 2017-03-06
1414
* @used-by getConfigPaymentAction()
1515
* @used-by \Df\GingerPaymentsBase\ConfigProvider::config()
16-
* @used-by \Df\GingerPaymentsBase\T\CaseT::api()
16+
* @used-by \Df\GingerPaymentsBase\Test\CaseT::api()
1717
* @used-by \Df\GingerPaymentsBase\W\Handler::strategyC()
1818
* @return Api
1919
*/
@@ -59,7 +59,7 @@ final protected function transUrl(T $t) {/** @var string|null $tmpl */ return
5959
* for the «order_lines/order_line/vat_percentage» property
6060
* of a «POST /v1/orders/» request: https://mage2.pro/t/3451
6161
* @used-by \Df\GingerPaymentsBase\Charge::pOrderLines_products()
62-
* @used-by \Df\GingerPaymentsBase\T\CreateOrder::t01_success()
62+
* @used-by \Df\GingerPaymentsBase\Test\CreateOrder::t01_success()
6363
* 2017-03-08
6464
* https://github.com/mage2pro/ginger-payments/blob/0.2.3/etc/config.xml?ts=4#L23
6565
* https://github.com/mage2pro/kassa-compleet/blob/0.2.3/etc/config.xml?ts=4#L23

T/CaseT.php renamed to Test/CaseT.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?php
2-
namespace Df\GingerPaymentsBase\T;
2+
namespace Df\GingerPaymentsBase\Test;
33
use Df\GingerPaymentsBase\Api;
44
use Df\GingerPaymentsBase\Method as M;
55
use Df\GingerPaymentsBase\Settings as S;
66
/**
77
* 2017-02-25
8-
* @see \Df\GingerPaymentsBase\T\СreateOrder
9-
* @see \Df\GingerPaymentsBase\T\GetIdealBanks
10-
* @see \Df\GingerPaymentsBase\T\GetMerchant
8+
* @see \Df\GingerPaymentsBase\Test\СreateOrder
9+
* @see \Df\GingerPaymentsBase\Test\GetIdealBanks
10+
* @see \Df\GingerPaymentsBase\Test\GetMerchant
1111
* @method M m()
1212
* @method S s()
1313
*/
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
<?php
2-
namespace Df\GingerPaymentsBase\T;
2+
namespace Df\GingerPaymentsBase\Test;
33
/**
44
* 2017-02-27
5-
* @see \Df\GingerPaymentsBase\T\CreateOrder\Ideal
6-
* @see \Dfe\GingerPayments\T\CreateOrder\BankTransfer
5+
* @see \Df\GingerPaymentsBase\Test\CreateOrder\Ideal
6+
* @see \Dfe\GingerPayments\Test\CreateOrder\BankTransfer
77
* @see \Dfe\KassaCompleet\T\CreateOrder\BankTransfer
88
*/
99
abstract class CreateOrder extends CaseT {
1010
/**
1111
* 2017-02-27
1212
* @used-by t01_success()
13-
* @see \Df\GingerPaymentsBase\T\CreateOrder\Ideal::method()
14-
* @see \Dfe\GingerPayments\T\CreateOrder\BankTransfer::method()
13+
* @see \Df\GingerPaymentsBase\Test\CreateOrder\Ideal::method()
14+
* @see \Dfe\GingerPayments\Test\CreateOrder\BankTransfer::method()
1515
* @see \Dfe\KassaCompleet\T\CreateOrder\BankTransfer::method()
1616
* @return string
1717
*/
@@ -132,7 +132,7 @@ final function t01_success() {
132132
/**
133133
* 2017-02-27
134134
* @used-by t01_success()
135-
* @see \Df\GingerPaymentsBase\T\CreateOrder\Ideal::params()
135+
* @see \Df\GingerPaymentsBase\Test\CreateOrder\Ideal::params()
136136
* @return string
137137
*/
138138
protected function params() {return [];}
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
<?php
2-
namespace Df\GingerPaymentsBase\T\CreateOrder;
2+
namespace Df\GingerPaymentsBase\Test\CreateOrder;
33
/**
44
* 2017-02-27
5-
* @see \Dfe\GingerPayments\T\CreateOrder\Ideal
5+
* @see \Dfe\GingerPayments\Test\CreateOrder\Ideal
66
* @see \Dfe\KassaCompleet\T\CreateOrder\Ideal
77
*/
8-
abstract class Ideal extends \Df\GingerPaymentsBase\T\CreateOrder {
8+
abstract class Ideal extends \Df\GingerPaymentsBase\Test\CreateOrder {
99
/**
1010
* 2017-02-27
1111
* @override
12-
* @see \Df\GingerPaymentsBase\T\CreateOrder::method()
13-
* @used-by \Df\GingerPaymentsBase\T\CreateOrder::t01_success()
12+
* @see \Df\GingerPaymentsBase\Test\CreateOrder::method()
13+
* @used-by \Df\GingerPaymentsBase\Test\CreateOrder::t01_success()
1414
* @return string
1515
*/
1616
final protected function method() {return 'ideal';}
1717

1818
/**
1919
* 2017-02-27
2020
* @override
21-
* @see \Df\GingerPaymentsBase\T\CreateOrder::params()
22-
* @used-by \Df\GingerPaymentsBase\T\CreateOrder::t01_success()
21+
* @see \Df\GingerPaymentsBase\Test\CreateOrder::params()
22+
* @used-by \Df\GingerPaymentsBase\Test\CreateOrder::t01_success()
2323
* @return string
2424
*/
2525
final protected function params() {return [
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
2-
namespace Df\GingerPaymentsBase\T;
2+
namespace Df\GingerPaymentsBase\Test;
33
/**
44
* 2017-02-27
5-
* @see \Dfe\GingerPayments\T\GetIdealBanks
5+
* @see \Dfe\GingerPayments\Test\GetIdealBanks
66
* @see \Dfe\KassaCompleet\T\GetIdealBanks
77
*/
88
abstract class GetIdealBanks extends CaseT {
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
2-
namespace Df\GingerPaymentsBase\T;
2+
namespace Df\GingerPaymentsBase\Test;
33
/**
44
* 2017-03-01
5-
* @see \Dfe\GingerPayments\T\GetMerchant
5+
* @see \Dfe\GingerPayments\Test\GetMerchant
66
* @see \Dfe\KassaCompleet\T\GetMerchant
77
*/
88
abstract class GetMerchant extends CaseT {
@@ -29,15 +29,15 @@ final function t01() {
2929
/**
3030
* 2017-03-01
3131
* @used-by t01()
32-
* @see \Dfe\GingerPayments\T\GetMerchant::merchantId()
32+
* @see \Dfe\GingerPayments\Test\GetMerchant::merchantId()
3333
* @return string
3434
*/
3535
protected function merchantId() {return 'self';}
3636

3737
/**
3838
* 2017-03-01
3939
* @used-by t01()
40-
* @see \Dfe\GingerPayments\T\GetMerchant::projectId()
40+
* @see \Dfe\GingerPayments\Test\GetMerchant::projectId()
4141
* @return string
4242
*/
4343
protected function projectId() {return 'self';}

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mage2pro/ginger-payments-base"
3-
,"version": "1.2.3"
3+
,"version": "1.2.4"
44
,"description": "The common implementation part of my «Kassa Compleet» and «Ginger Payments» payment extensions for Magento 2"
55
,"type": "magento2-module"
66
,"homepage": "https://mage2.pro/c/extensions"

0 commit comments

Comments
 (0)