Skip to content

Commit ad86caa

Browse files
committed
Update dependencies and add spacing for improved readability
Downgrades specific dependencies in `composer.json` to maintain compatibility. Adds consistent blank lines between protected properties in multiple API classes for better code readability and organization.
1 parent d1bac4c commit ad86caa

11 files changed

Lines changed: 31 additions & 3 deletions

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@
2525
"ext-json": "*",
2626
"ext-mbstring": "*",
2727
"guzzlehttp/psr7": "^1.8 || ^2.0",
28-
"vitexsoftware/ease-core": "^1.47"
28+
"vitexsoftware/ease-core": "^1.45"
2929
},
3030
"require-dev": {
3131
"phpunit/phpunit": "^8.0 || ^9.0",
3232
"friendsofphp/php-cs-fixer": "^3.71",
33-
"ergebnis/composer-normalize": "^2.45",
34-
"ergebnis/php-cs-fixer-config": "^6.45",
33+
"ergebnis/composer-normalize": "^2.43",
34+
"ergebnis/php-cs-fixer-config": "^6.34",
3535
"phpstan/phpstan-phpunit": "2.0.x-dev"
3636
},
3737
"autoload": {

lib/Configuration.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ class Configuration
105105
* Debug file location (log to STDOUT by default).
106106
*/
107107
protected string $tempFolderPath;
108+
108109
private static Configuration $defaultConfiguration;
109110

110111
/**

lib/PremiumAPI/DownloadStatementApi.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,11 @@ class DownloadStatementApi
6464
'application/json',
6565
],
6666
];
67+
6768
protected ClientInterface $client;
69+
6870
protected Configuration $config;
71+
6972
protected HeaderSelector $headerSelector;
7073

7174
/**

lib/PremiumAPI/GetAccountBalanceApi.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,11 @@ class GetAccountBalanceApi
6464
'application/json',
6565
],
6666
];
67+
6768
protected ClientInterface $client;
69+
6870
protected Configuration $config;
71+
6972
protected HeaderSelector $headerSelector;
7073

7174
/**

lib/PremiumAPI/GetAccountsApi.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,11 @@ class GetAccountsApi
6464
'application/json',
6565
],
6666
];
67+
6768
protected ClientInterface $client;
69+
6870
protected Configuration $config;
71+
6972
protected HeaderSelector $headerSelector;
7073

7174
/**

lib/PremiumAPI/GetBatchDetailApi.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,11 @@ class GetBatchDetailApi
6464
'application/json',
6565
],
6666
];
67+
6768
protected ClientInterface $client;
69+
6870
protected Configuration $config;
71+
6972
protected HeaderSelector $headerSelector;
7073

7174
/**

lib/PremiumAPI/GetFxRatesApi.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,11 @@ class GetFxRatesApi
6464
'application/json',
6565
],
6666
];
67+
6768
protected ClientInterface $client;
69+
6870
protected Configuration $config;
71+
6972
protected HeaderSelector $headerSelector;
7073

7174
/**

lib/PremiumAPI/GetFxRatesListApi.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,11 @@ class GetFxRatesListApi
6464
'application/json',
6565
],
6666
];
67+
6768
protected ClientInterface $client;
69+
6870
protected Configuration $config;
71+
6972
protected HeaderSelector $headerSelector;
7073

7174
/**

lib/PremiumAPI/GetStatementListApi.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,11 @@ class GetStatementListApi
6464
'application/json',
6565
],
6666
];
67+
6768
protected ClientInterface $client;
69+
6870
protected Configuration $config;
71+
6972
protected HeaderSelector $headerSelector;
7073

7174
/**

lib/PremiumAPI/GetTransactionListApi.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,11 @@ class GetTransactionListApi
6464
'application/json',
6565
],
6666
];
67+
6768
protected ClientInterface $client;
69+
6870
protected Configuration $config;
71+
6972
protected HeaderSelector $headerSelector;
7073

7174
/**

0 commit comments

Comments
 (0)