Skip to content

Commit b4378e8

Browse files
authored
Revert "[UPMERGE] 2.2 -> 3.0" (#292)
Reverts #289
2 parents 1e2c8d3 + 05a0bff commit b4378e8

File tree

5 files changed

+6
-19
lines changed

5 files changed

+6
-19
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,9 @@ jobs:
7171
- name: Output PHP version for Symfony CLI
7272
run: php -v | head -n 1 | awk '{ print $2 }' > .php-version
7373

74+
- name: Install certificates
75+
run: symfony server:ca:install
76+
7477
- name: Get Composer cache directory
7578
id: composer-cache
7679
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT

AUDIT-IGNORE.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

behat.yml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ default:
1919

2020
Behat\MinkExtension:
2121
files_path: "%paths.base%/vendor/sylius/sylius/src/Sylius/Behat/Resources/fixtures/"
22-
base_url: "http://127.0.0.1:8080/"
22+
base_url: "https://127.0.0.1:8080/"
2323
default_session: symfony
2424
javascript_session: chromedriver
2525
sessions:

composer.json

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -76,14 +76,7 @@
7676
"symfony/runtime": false,
7777
"symfony/thanks": false
7878
},
79-
"sort-packages": true,
80-
"audit": {
81-
"ignore": [
82-
"PKSA-gs8r-6kz6-pp56",
83-
"PKSA-gnn4-pxdg-q76m",
84-
"PKSA-4g5g-4rkv-myqs"
85-
]
86-
}
79+
"sort-packages": true
8780
},
8881
"extra": {
8982
"symfony": {

src/Api/MolliePaymentConfigurationProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function provideConfiguration(PaymentInterface $payment): array
5757
$details = $payment->getDetails();
5858
$methodName = $details['molliePaymentMethods'] ?? null;
5959

60-
if ($methodName === null || $methodName === '') {
60+
if (!$methodName) {
6161
if (isset($details['metadata']['molliePaymentMethods'])) {
6262
$methodName = $details['metadata']['molliePaymentMethods'];
6363
}

0 commit comments

Comments
 (0)