Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changed names of classes used in yaml files #65

Merged
merged 1 commit into from
Dec 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

## [7.0.1] - 2021-12-12
### Changed
- [#64] Changed names of classes used in yaml files in tests

## [7.0.0] - 2021-09-02
## Added
- add support for PHP 8
Expand Down Expand Up @@ -219,6 +223,7 @@ patchesJson6902:
[@DavidOstrozlik]: https://github.com/DavidOstrozlik
[@PetrHeinz]: https://github.com/PetrHeinz

[#64]: https://github.com/sspooky13/yaml-standards/issues/64
[#35]: https://github.com/sspooky13/yaml-standards/pull/35
[#32]: https://github.com/sspooky13/yaml-standards/pull/32
[#31]: https://github.com/sspooky13/yaml-standards/pull/31
Expand All @@ -227,7 +232,8 @@ patchesJson6902:
[#14]: https://github.com/sspooky13/yaml-standards/issues/14
[#13]: https://github.com/sspooky13/yaml-standards/pull/13

[Unreleased]: https://github.com/sspooky13/yaml-standards/compare/7.0.0...HEAD
[Unreleased]: https://github.com/sspooky13/yaml-standards/compare/7.0.1...HEAD
[7.0.1]: https://github.com/sspooky13/yaml-standards/compare/7.0.0...7.0.1
[7.0.0]: https://github.com/sspooky13/yaml-standards/compare/6.0.0...7.0.0
[6.0.0]: https://github.com/sspooky13/yaml-standards/compare/5.1.2...6.0.0
[5.1.2]: https://github.com/sspooky13/yaml-standards/compare/5.1.1...5.1.2
Expand Down
830 changes: 415 additions & 415 deletions tests/Command/resource/yamlFiles/sorted/service/shopsys-service.yml

Large diffs are not rendered by default.

952 changes: 476 additions & 476 deletions tests/Command/resource/yamlFiles/unSorted/service/shopsys-service.yml

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions tests/Model/YamlAlphabetical/resource/fixed/images.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Example:
#- name: product
# class: Shopsys\FrameworkBundle\Model\Product\Product
# class: YamlStandards\YamlStandardsFooBundle\Model\Product\Product
# types:
# - name: gallery
# multiple: true
Expand All @@ -27,7 +27,7 @@
# occurrence: 'Front-end: Product detail, Product list'

- name: payment
class: Shopsys\FrameworkBundle\Model\Payment\Payment
class: YamlStandards\YamlStandardsFooBundle\Model\Payment\Payment
sizes:
- name: ~
crop: false
Expand All @@ -36,7 +36,7 @@
width: ~

- name: category
class: Shopsys\FrameworkBundle\Model\Category\Category
class: YamlStandards\YamlStandardsFooBundle\Model\Category\Category
sizes:
- name: ~
crop: false
Expand All @@ -45,7 +45,7 @@
width: 30

- name: product
class: Shopsys\FrameworkBundle\Model\Product\Product
class: YamlStandards\YamlStandardsFooBundle\Model\Product\Product
multiple: true
sizes:
- name: ~
Expand All @@ -72,7 +72,7 @@
width: 50

- name: sliderItem
class: Shopsys\FrameworkBundle\Model\Slider\SliderItem
class: YamlStandards\YamlStandardsFooBundle\Model\Slider\SliderItem
sizes:
- name: ~
additionalSizes:
Expand All @@ -83,7 +83,7 @@
width: 900

- name: transport
class: Shopsys\FrameworkBundle\Model\Transport\Transport
class: YamlStandards\YamlStandardsFooBundle\Model\Transport\Transport
sizes:
- name: ~
crop: false
Expand All @@ -92,7 +92,7 @@
width: ~

- name: noticer
class: Shopsys\FrameworkBundle\Model\Advert\Advert
class: YamlStandards\YamlStandardsFooBundle\Model\Advert\Advert
sizes:
- name: header
additionalSizes:
Expand Down Expand Up @@ -130,7 +130,7 @@
width: 240

- name: brand
class: Shopsys\FrameworkBundle\Model\Product\Brand\Brand
class: YamlStandards\YamlStandardsFooBundle\Model\Product\Brand\Brand
sizes:
- name: ~
crop: false
Expand Down
1,010 changes: 505 additions & 505 deletions tests/Model/YamlAlphabetical/resource/fixed/shopsys-service.yml

Large diffs are not rendered by default.

Loading