Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit aaee468

Browse files
authored
bug #12496 fixed find files in yaml standards (sspooky13)
This PR was merged into the 1.8-dev branch. Discussion ---------- | Q | A | --------------- | ----- | Branch? | master | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Related tickets | | License | MIT Hello, I am glad you upgrade dependency to [yaml-standards](https://github.com/sspooky13/yaml-standards) but you changed [only version number](Sylius/Sylius#12457) and you didn't change logic to find files 😅, now you [need to use wildcard to find files](https://github.com/sspooky13/yaml-standards/blame/master/CHANGELOG.md#L11). I take this as feedback that changelog is not written well. I will be glad for every help how to write it better or what should I do to make sure this doesn't happen again? 🤔 Thank you in advance 🤝 Commits ------- 0b2594590eae65426af4f51228832e5dcb2bcf71 fixed find files in yaml standards
2 parents 9cfea88 + 1617085 commit aaee468

3 files changed

Lines changed: 11 additions & 11 deletions

File tree

Resources/config/app/fixtures/dress.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ sylius_fixtures:
4040
- name: 'Dress material'
4141
code: 'dress_material'
4242
type: 'text'
43-
43+
4444
- name: 'Length'
4545
code: 'length'
4646
type: 'integer'

Resources/config/app/fixtures/shop_configuration.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -221,10 +221,10 @@ sylius_fixtures:
221221
- 'FASHION_WEB'
222222
coupon_based: true
223223
coupons:
224-
- code: 'CHRISTMAS_SALE'
225-
expires_at: 'December 24'
226-
usage_limit: 10
227-
per_customer_usage_limit: 1
224+
- code: 'CHRISTMAS_SALE'
225+
expires_at: 'December 24'
226+
usage_limit: 10
227+
per_customer_usage_limit: 1
228228
new_year:
229229
code: 'new_year'
230230
name: 'New Year'

Resources/config/app/messenger.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ framework:
44
# failure_transport: failed
55

66
transports:
7-
# https://symfony.com/doc/current/messenger.html#transport-configuration
8-
# async: '%env(MESSENGER_TRANSPORT_DSN)%'
9-
# failed: 'doctrine://default?queue_name=failed'
10-
# sync: 'sync://'
7+
# https://symfony.com/doc/current/messenger.html#transport-configuration
8+
# async: '%env(MESSENGER_TRANSPORT_DSN)%'
9+
# failed: 'doctrine://default?queue_name=failed'
10+
# sync: 'sync://'
1111

1212
routing:
13-
# Route your messages to the transports
14-
# 'App\Message\YourMessage': async
13+
# Route your messages to the transports
14+
# 'App\Message\YourMessage': async
1515

1616
default_bus: sylius_default.bus
1717
buses:

0 commit comments

Comments
 (0)