├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── php.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYING.txt ├── LICENSE-AFL ├── LICENSE-OSL ├── README.md ├── bin └── svc ├── composer.json ├── composer.lock ├── dev └── tests │ └── Unit │ ├── ClassHierarchy │ └── EntityTest.php │ ├── Console │ └── Command │ │ ├── CompareSourceCommandApiClassesTest.php │ │ ├── CompareSourceCommandApiInterfacesTest.php │ │ ├── CompareSourceCommandApiTraitsTest.php │ │ ├── CompareSourceCommandDatabaseSchemasTest.php │ │ ├── CompareSourceCommandDiXmlTest.php │ │ ├── CompareSourceCommandLayoutTest.php │ │ ├── CompareSourceCommandLessTest.php │ │ ├── CompareSourceCommandMftfTest.php │ │ ├── CompareSourceCommandNonApiClassesTest.php │ │ ├── CompareSourceCommandNonApiInterfacesTest.php │ │ ├── CompareSourceCommandNonApiTraitsTest.php │ │ ├── CompareSourceCommandSystemXmlTest.php │ │ ├── CompareSourceCommandTest │ │ ├── AbstractHtmlTestCaseForHtml.php │ │ ├── AbstractTestCase.php │ │ ├── AbstractTestCaseWithRegExp.php │ │ ├── HtmlParseInfoContainer.php │ │ └── _files │ │ │ ├── all │ │ │ ├── source-code-after │ │ │ │ ├── api-class │ │ │ │ │ ├── added-extends │ │ │ │ │ │ ├── TestClass.php │ │ │ │ │ │ └── TestClassBase.php │ │ │ │ │ └── composer.json │ │ │ │ ├── api-interface │ │ │ │ │ ├── composer.json │ │ │ │ │ └── exception-subclass-added │ │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ │ ├── TestInterface.php │ │ │ │ │ │ └── TestParentException.php │ │ │ │ ├── api-trait │ │ │ │ │ ├── changed-method-parameter-type │ │ │ │ │ │ └── TestTrait.php │ │ │ │ │ └── composer.json │ │ │ │ ├── composer.json │ │ │ │ ├── db_schema │ │ │ │ │ ├── add-foreign-key │ │ │ │ │ │ └── Magento │ │ │ │ │ │ │ └── DbSchema │ │ │ │ │ │ │ └── etc │ │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ │ └── composer.json │ │ │ │ ├── di_xml │ │ │ │ │ ├── change-name │ │ │ │ │ │ └── Magento │ │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ │ └── etc │ │ │ │ │ │ │ └── di.xml │ │ │ │ │ └── composer.json │ │ │ │ ├── layout_xml │ │ │ │ │ ├── block_remove │ │ │ │ │ │ └── Magento │ │ │ │ │ │ │ └── Customer │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ │ └── layout │ │ │ │ │ │ │ └── customer_index_viewwishlist.xml │ │ │ │ │ └── composer.json │ │ │ │ ├── less │ │ │ │ │ ├── composer.json │ │ │ │ │ └── removed-import │ │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── view │ │ │ │ │ │ └── frontend │ │ │ │ │ │ └── web │ │ │ │ │ │ └── css │ │ │ │ │ │ └── source │ │ │ │ │ │ └── test.less │ │ │ │ ├── mftf │ │ │ │ │ ├── composer.json │ │ │ │ │ └── suite-after-action-changed │ │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ ├── system_xml │ │ │ │ │ ├── composer.json │ │ │ │ │ └── field_removed │ │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── etc │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ └── system.xml │ │ │ │ └── xsd-schema │ │ │ │ │ ├── attribute-removed │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── etc │ │ │ │ │ │ └── test-schema.xsd │ │ │ │ │ └── composer.json │ │ │ └── source-code-before │ │ │ │ ├── api-class │ │ │ │ ├── added-extends │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestClassBase.php │ │ │ │ └── composer.json │ │ │ │ ├── api-interface │ │ │ │ ├── composer.json │ │ │ │ └── exception-subclass-added │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestInterface.php │ │ │ │ │ └── TestParentException.php │ │ │ │ ├── api-trait │ │ │ │ ├── changed-method-parameter-type │ │ │ │ │ └── TestTrait.php │ │ │ │ └── composer.json │ │ │ │ ├── composer.json │ │ │ │ ├── db_schema │ │ │ │ ├── add-foreign-key │ │ │ │ │ └── Magento │ │ │ │ │ │ └── DbSchema │ │ │ │ │ │ └── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ └── composer.json │ │ │ │ ├── di_xml │ │ │ │ ├── change-name │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── etc │ │ │ │ │ │ └── di.xml │ │ │ │ └── composer.json │ │ │ │ ├── layout_xml │ │ │ │ ├── block_remove │ │ │ │ │ └── Magento │ │ │ │ │ │ └── Customer │ │ │ │ │ │ └── view │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ └── layout │ │ │ │ │ │ └── customer_index_viewwishlist.xml │ │ │ │ └── composer.json │ │ │ │ ├── less │ │ │ │ ├── composer.json │ │ │ │ └── removed-import │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── view │ │ │ │ │ └── frontend │ │ │ │ │ └── web │ │ │ │ │ └── css │ │ │ │ │ └── source │ │ │ │ │ └── test.less │ │ │ │ ├── mftf │ │ │ │ ├── composer.json │ │ │ │ └── suite-after-action-changed │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ │ ├── system_xml │ │ │ │ ├── composer.json │ │ │ │ └── field_removed │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── adminhtml │ │ │ │ │ └── system.xml │ │ │ │ └── xsd-schema │ │ │ │ ├── attribute-removed │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── test-schema.xsd │ │ │ │ └── composer.json │ │ │ ├── api-class │ │ │ ├── added-extends │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestClassBase.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestClassBase.php │ │ │ ├── added-implements │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestClass1.php │ │ │ │ │ ├── TestClass2.php │ │ │ │ │ ├── TestInterface1.php │ │ │ │ │ └── TestInterface2.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestClass1.php │ │ │ │ │ ├── TestClass2.php │ │ │ │ │ ├── TestInterface1.php │ │ │ │ │ └── TestInterface2.php │ │ │ ├── added-method-subclass-overwrite-transition │ │ │ │ ├── source-code-after │ │ │ │ │ ├── ApiClass.php │ │ │ │ │ ├── BaseApiClass.php │ │ │ │ │ └── BaseNonApiClass.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── ApiClass.php │ │ │ │ │ ├── BaseApiClass.php │ │ │ │ │ └── BaseNonApiClass.php │ │ │ ├── added-method-subclass-overwrite │ │ │ │ ├── source-code-after │ │ │ │ │ ├── ApiClass.php │ │ │ │ │ └── BaseApiClass.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── ApiClass.php │ │ │ │ │ └── BaseApiClass.php │ │ │ ├── added-trait │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestClass1.php │ │ │ │ │ ├── TestClass2.php │ │ │ │ │ ├── TestTrait1.php │ │ │ │ │ └── TestTrait2.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestClass1.php │ │ │ │ │ ├── TestClass2.php │ │ │ │ │ ├── TestTrait1.php │ │ │ │ │ └── TestTrait2.php │ │ │ ├── annotation-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── annotation-not-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── annotation-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── changed-method-parameter-type │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── changed-method-return-type │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── constant-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── constant-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── exception-subclass-added │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestParentException.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestParentException.php │ │ │ ├── exception-subclassed │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestParentException.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestParentException.php │ │ │ ├── exception-superclass-added │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestParentException.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestParentException.php │ │ │ ├── exception-superclassed │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestParentException.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestParentException.php │ │ │ ├── moved-method-parameter-type-from-docblock-to-inline │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── moved-method-parameter-type-from-inline-to-docblock │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── moved-method-return-type-from-docblock-to-inline │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── moved-method-return-type-from-inline-to-docblock │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── moved-method-variable-type-from-docblock-to-inline │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── moved-method-variable-type-from-inline-to-docblock │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── new-class │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestInterface.php │ │ │ ├── new-method-parameter-type │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── new-method │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── new-optional-constructor-parameter-for-extendable │ │ │ │ ├── source-code-after │ │ │ │ │ └── AbstractExtensibleModel.php │ │ │ │ └── source-code-before │ │ │ │ │ └── AbstractExtensibleModel.php │ │ │ ├── new-optional-constructor-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── new-optional-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── new-optional-scalar-constructor-parameter-for-extendable │ │ │ │ ├── source-code-after │ │ │ │ │ └── AbstractExtensibleModel.php │ │ │ │ └── source-code-before │ │ │ │ │ └── AbstractExtensibleModel.php │ │ │ ├── new-required-constructor-parameter-for-extendable │ │ │ │ ├── source-code-after │ │ │ │ │ └── AbstractExtensibleModel.php │ │ │ │ └── source-code-before │ │ │ │ │ └── AbstractExtensibleModel.php │ │ │ ├── new-required-constructor-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── new-required-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── new-required-scalar-constructor-parameter-for-extendable │ │ │ │ ├── source-code-after │ │ │ │ │ └── AbstractExtensibleModel.php │ │ │ │ └── source-code-before │ │ │ │ │ └── AbstractExtensibleModel.php │ │ │ ├── new-required-scalar-constructor-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── private-constant-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── private-constant-remove │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── protected-property-overwrite │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestClassParent.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestClassParent.php │ │ │ ├── public-property-overwrite │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestClassParent.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestClassParent.php │ │ │ ├── remove-extends │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestClassBase.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestClassBase.php │ │ │ ├── remove-implements │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestClassInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestClassInterface.php │ │ │ ├── removed-class │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestInterface.php │ │ │ ├── removed-last-constructor-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── removed-method-parameter-type │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── removed-method │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── removed-non-last-constructor-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── removed-optional-non-last-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── removed-required-last-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── removed-required-method-parameter-followed-by-optional-one │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ └── removed-required-non-last-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ └── TestClass.php │ │ │ ├── api-interface │ │ │ ├── added-extends │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestInterface1.php │ │ │ │ │ ├── TestInterface2.php │ │ │ │ │ ├── TestInterface3.php │ │ │ │ │ └── TestInterface4.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestInterface1.php │ │ │ │ │ ├── TestInterface2.php │ │ │ │ │ ├── TestInterface3.php │ │ │ │ │ └── TestInterface4.php │ │ │ ├── annotation-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestInterface.php │ │ │ ├── annotation-not-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestInterface.php │ │ │ ├── annotation-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestInterface.php │ │ │ ├── exception-subclass-added │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestInterface.php │ │ │ │ │ └── TestParentException.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestInterface.php │ │ │ │ │ └── TestParentException.php │ │ │ ├── exception-subclassed │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestInterface.php │ │ │ │ │ └── TestParentException.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestInterface.php │ │ │ │ │ └── TestParentException.php │ │ │ ├── exception-superclass-added │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestInterface.php │ │ │ │ │ └── TestParentException.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestInterface.php │ │ │ │ │ └── TestParentException.php │ │ │ ├── exception-superclassed │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestInterface.php │ │ │ │ │ └── TestParentException.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestInterface.php │ │ │ │ │ └── TestParentException.php │ │ │ ├── moved-method-parameter-type-from-docblock-to-inline │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestInterface.php │ │ │ ├── moved-method-parameter-type-from-inline-to-docblock │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestInterface.php │ │ │ ├── moved-method-return-type-from-docblock-to-inline │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestInterface.php │ │ │ ├── moved-method-return-type-from-inline-to-docblock │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestInterface.php │ │ │ ├── moved-method-variable-type-from-docblock-to-inline │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestInterface.php │ │ │ ├── moved-method-variable-type-from-inline-to-docblock │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestInterface.php │ │ │ ├── new-interface │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestAInterface.php │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestInterface.php │ │ │ ├── new-method │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestInterface.php │ │ │ ├── new-optional-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestInterface.php │ │ │ ├── new-required-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestInterface.php │ │ │ ├── remove-extends │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestInterface.php │ │ │ │ │ └── TestInterfaceBase.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestInterface.php │ │ │ │ │ └── TestInterfaceBase.php │ │ │ ├── removed-interface │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestAInterface.php │ │ │ │ │ └── TestInterface.php │ │ │ ├── removed-last-required-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestInterface.php │ │ │ ├── removed-method │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestInterface.php │ │ │ └── renamed-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ └── TestInterface.php │ │ │ ├── api-trait │ │ │ ├── changed-method-parameter-type │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── changed-method-return-type │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── moved-method-parameter-type-from-docblock-to-inline │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── moved-method-parameter-type-from-inline-to-docblock │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── moved-method-return-type-from-docblock-to-inline │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── moved-method-return-type-from-inline-to-docblock │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── moved-method-variable-type-from-docblock-to-inline │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── moved-method-variable-type-from-inline-to-docblock │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── new-method-parameter-type │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── new-method │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── new-optional-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── new-required-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── no-change │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── private-method-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── removed-method-parameter-type │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── removed-method │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── removed-optional-non-last-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── removed-required-last-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── removed-required-method-parameter-followed-by-optional-one │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ └── removed-required-non-last-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ └── TestTrait.php │ │ │ ├── application_includes.txt │ │ │ ├── db_schema │ │ │ ├── add-foreign-key │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── DbSchema │ │ │ │ │ │ └── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── DbSchema │ │ │ │ │ └── etc │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ └── db_schema_whitelist.json │ │ │ ├── add-primary-key │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── DbSchema │ │ │ │ │ │ └── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── DbSchema │ │ │ │ │ └── etc │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ └── db_schema_whitelist.json │ │ │ ├── add-unique-key │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── DbSchema │ │ │ │ │ │ └── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── DbSchema │ │ │ │ │ └── etc │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ └── db_schema_whitelist.json │ │ │ ├── change-foreign-key │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── DbSchema │ │ │ │ │ │ └── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── DbSchema │ │ │ │ │ └── etc │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ └── db_schema_whitelist.json │ │ │ ├── change-primary-key │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── DbSchema │ │ │ │ │ │ └── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── DbSchema │ │ │ │ │ └── etc │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ └── db_schema_whitelist.json │ │ │ ├── change-unique-key │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── DbSchema │ │ │ │ │ │ └── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── DbSchema │ │ │ │ │ └── etc │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ └── db_schema_whitelist.json │ │ │ ├── column-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── DbSchema │ │ │ │ │ │ └── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── DbSchema │ │ │ │ │ └── etc │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ └── db_schema_whitelist.json │ │ │ ├── column-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── DbSchema │ │ │ │ │ │ └── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── DbSchema │ │ │ │ │ └── etc │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ └── db_schema_whitelist.json │ │ │ ├── drop-foreign-key │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── DbSchema │ │ │ │ │ │ └── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── DbSchema │ │ │ │ │ └── etc │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ └── db_schema_whitelist.json │ │ │ ├── drop-primary-key │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── DbSchema │ │ │ │ │ │ └── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── DbSchema │ │ │ │ │ └── etc │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ └── db_schema_whitelist.json │ │ │ ├── drop-unique-key │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── DbSchema │ │ │ │ │ │ └── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── DbSchema │ │ │ │ │ └── etc │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ └── db_schema_whitelist.json │ │ │ ├── nothing-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── DbSchema │ │ │ │ │ │ └── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── DbSchema │ │ │ │ │ └── etc │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ └── db_schema_whitelist.json │ │ │ ├── table-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ ├── DbSchema │ │ │ │ │ │ └── etc │ │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ │ │ └── DbSchemaAnotherModule │ │ │ │ │ │ └── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ ├── DbSchema │ │ │ │ │ └── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ │ └── DbSchemaAnotherModule │ │ │ │ │ └── etc │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ └── db_schema_whitelist.json │ │ │ ├── table-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── DbSchema │ │ │ │ │ │ └── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── DbSchema │ │ │ │ │ └── etc │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ └── db_schema_whitelist.json │ │ │ ├── table-dropped │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── DbSchema │ │ │ │ │ │ └── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── DbSchema │ │ │ │ │ └── etc │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ └── db_schema_whitelist.json │ │ │ ├── table-resource-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── DbSchema │ │ │ │ │ │ └── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── DbSchema │ │ │ │ │ └── etc │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ └── db_schema_whitelist.json │ │ │ ├── whitelist-was-reduced │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ ├── DbSchema │ │ │ │ │ │ └── etc │ │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ │ │ └── DbSchemaSecond │ │ │ │ │ │ └── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ ├── DbSchema │ │ │ │ │ └── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ │ └── DbSchemaSecond │ │ │ │ │ └── etc │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ └── db_schema_whitelist.json │ │ │ └── whitelist-was-removed │ │ │ │ ├── source-code-after │ │ │ │ └── Magento │ │ │ │ │ └── DbSchema │ │ │ │ │ └── etc │ │ │ │ │ └── db_schema.xml │ │ │ │ └── source-code-before │ │ │ │ └── Magento │ │ │ │ └── DbSchema │ │ │ │ └── etc │ │ │ │ ├── db_schema.xml │ │ │ │ └── db_schema_whitelist.json │ │ │ ├── di_xml │ │ │ ├── change-name │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── etc │ │ │ │ │ │ └── di.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── di.xml │ │ │ ├── change-type │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── etc │ │ │ │ │ │ └── di.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── di.xml │ │ │ ├── moved-to-another-module │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── AnotherTestModule │ │ │ │ │ │ └── etc │ │ │ │ │ │ └── di.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── di.xml │ │ │ ├── moved-to-app-etc │ │ │ │ ├── source-code-after │ │ │ │ │ └── app │ │ │ │ │ │ └── etc │ │ │ │ │ │ └── di.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── di.xml │ │ │ ├── moved-to-global │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── etc │ │ │ │ │ │ └── di.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── adminhtml │ │ │ │ │ └── di.xml │ │ │ ├── moved-to-specific │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── etc │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ └── di.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── di.xml │ │ │ ├── no-change │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── etc │ │ │ │ │ │ └── di.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── di.xml │ │ │ ├── remove-type │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── etc │ │ │ │ │ │ └── di.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── di.xml │ │ │ └── removing-leading-slash-from-type │ │ │ │ ├── source-code-after │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── di.xml │ │ │ │ └── source-code-before │ │ │ │ └── Magento │ │ │ │ └── TestModule │ │ │ │ └── etc │ │ │ │ └── di.xml │ │ │ ├── layout_xml │ │ │ ├── block_remove │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── Customer │ │ │ │ │ │ └── view │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ └── layout │ │ │ │ │ │ └── customer_index_viewwishlist.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── Customer │ │ │ │ │ └── view │ │ │ │ │ └── adminhtml │ │ │ │ │ └── layout │ │ │ │ │ └── customer_index_viewwishlist.xml │ │ │ ├── container_remove │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── Customer │ │ │ │ │ │ └── view │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ └── layout │ │ │ │ │ │ └── customer_index_viewwishlist.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── Customer │ │ │ │ │ └── view │ │ │ │ │ └── adminhtml │ │ │ │ │ └── layout │ │ │ │ │ └── customer_index_viewwishlist.xml │ │ │ └── update_remove │ │ │ │ ├── source-code-after │ │ │ │ └── Magento │ │ │ │ │ └── ConfigurableProduct │ │ │ │ │ └── view │ │ │ │ │ └── adminhtml │ │ │ │ │ └── layout │ │ │ │ │ └── catalog_product_configurable.xml │ │ │ │ └── source-code-before │ │ │ │ └── Magento │ │ │ │ └── ConfigurableProduct │ │ │ │ └── view │ │ │ │ └── adminhtml │ │ │ │ └── layout │ │ │ │ └── catalog_product_configurable.xml │ │ │ ├── less │ │ │ ├── added-first-mixin-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── view │ │ │ │ │ │ └── frontend │ │ │ │ │ │ └── web │ │ │ │ │ │ └── css │ │ │ │ │ │ └── source │ │ │ │ │ │ └── test.less │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── view │ │ │ │ │ └── frontend │ │ │ │ │ └── web │ │ │ │ │ └── css │ │ │ │ │ └── source │ │ │ │ │ └── test.less │ │ │ ├── added-last-mixin-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── view │ │ │ │ │ │ └── frontend │ │ │ │ │ │ └── web │ │ │ │ │ │ └── css │ │ │ │ │ │ └── source │ │ │ │ │ │ └── test.less │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── view │ │ │ │ │ └── frontend │ │ │ │ │ └── web │ │ │ │ │ └── css │ │ │ │ │ └── source │ │ │ │ │ └── test.less │ │ │ ├── added-middle-mixin-parameters │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── view │ │ │ │ │ │ └── frontend │ │ │ │ │ │ └── web │ │ │ │ │ │ └── css │ │ │ │ │ │ └── source │ │ │ │ │ │ └── test.less │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── view │ │ │ │ │ └── frontend │ │ │ │ │ └── web │ │ │ │ │ └── css │ │ │ │ │ └── source │ │ │ │ │ └── test.less │ │ │ ├── added-mixin-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── view │ │ │ │ │ │ └── frontend │ │ │ │ │ │ └── web │ │ │ │ │ │ └── css │ │ │ │ │ │ └── source │ │ │ │ │ │ └── test.less │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── view │ │ │ │ │ └── frontend │ │ │ │ │ └── web │ │ │ │ │ └── css │ │ │ │ │ └── source │ │ │ │ │ └── test.less │ │ │ ├── no-change │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── view │ │ │ │ │ │ └── frontend │ │ │ │ │ │ └── web │ │ │ │ │ │ └── css │ │ │ │ │ │ └── source │ │ │ │ │ │ └── test.less │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── view │ │ │ │ │ └── frontend │ │ │ │ │ └── web │ │ │ │ │ └── css │ │ │ │ │ └── source │ │ │ │ │ └── test.less │ │ │ ├── removed-import │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── view │ │ │ │ │ │ └── frontend │ │ │ │ │ │ └── web │ │ │ │ │ │ └── css │ │ │ │ │ │ └── source │ │ │ │ │ │ └── test.less │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── view │ │ │ │ │ └── frontend │ │ │ │ │ └── web │ │ │ │ │ └── css │ │ │ │ │ └── source │ │ │ │ │ └── test.less │ │ │ ├── removed-imports │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── view │ │ │ │ │ │ └── frontend │ │ │ │ │ │ └── web │ │ │ │ │ │ └── css │ │ │ │ │ │ └── source │ │ │ │ │ │ └── test.less │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── view │ │ │ │ │ └── frontend │ │ │ │ │ └── web │ │ │ │ │ └── css │ │ │ │ │ └── source │ │ │ │ │ └── test.less │ │ │ ├── removed-mixin │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── view │ │ │ │ │ │ └── frontend │ │ │ │ │ │ └── web │ │ │ │ │ │ └── css │ │ │ │ │ │ └── source │ │ │ │ │ │ └── test.less │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── view │ │ │ │ │ └── frontend │ │ │ │ │ └── web │ │ │ │ │ └── css │ │ │ │ │ └── source │ │ │ │ │ └── test.less │ │ │ ├── removed-mixins │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── view │ │ │ │ │ │ └── frontend │ │ │ │ │ │ └── web │ │ │ │ │ │ └── css │ │ │ │ │ │ └── source │ │ │ │ │ │ └── test.less │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── view │ │ │ │ │ └── frontend │ │ │ │ │ └── web │ │ │ │ │ └── css │ │ │ │ │ └── source │ │ │ │ │ └── test.less │ │ │ ├── removed-variable │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── view │ │ │ │ │ │ └── frontend │ │ │ │ │ │ └── web │ │ │ │ │ │ └── css │ │ │ │ │ │ └── source │ │ │ │ │ │ └── test.less │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── view │ │ │ │ │ └── frontend │ │ │ │ │ └── web │ │ │ │ │ └── css │ │ │ │ │ └── source │ │ │ │ │ └── test.less │ │ │ └── removed-variables │ │ │ │ ├── source-code-after │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── view │ │ │ │ │ └── frontend │ │ │ │ │ └── web │ │ │ │ │ └── css │ │ │ │ │ └── source │ │ │ │ │ └── test.less │ │ │ │ └── source-code-before │ │ │ │ └── Magento │ │ │ │ └── TestModule │ │ │ │ └── view │ │ │ │ └── frontend │ │ │ │ └── web │ │ │ │ └── css │ │ │ │ └── source │ │ │ │ └── test.less │ │ │ ├── mftf │ │ │ ├── actionGroup-action-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── ActionGroup │ │ │ │ │ │ └── actionGroup.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── ActionGroup │ │ │ │ │ └── actionGroup.xml │ │ │ ├── actionGroup-action-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── ActionGroup │ │ │ │ │ │ └── actionGroup.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── ActionGroup │ │ │ │ │ └── actionGroup.xml │ │ │ ├── actionGroup-action-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── ActionGroup │ │ │ │ │ │ └── actionGroup.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── ActionGroup │ │ │ │ │ └── actionGroup.xml │ │ │ ├── actionGroup-action-type-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── ActionGroup │ │ │ │ │ │ └── actionGroup.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── ActionGroup │ │ │ │ │ └── actionGroup.xml │ │ │ ├── actionGroup-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── ActionGroup │ │ │ │ │ │ └── actionGroup.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── ActionGroup │ │ │ │ │ └── actionGroup.xml │ │ │ ├── actionGroup-argument-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── ActionGroup │ │ │ │ │ │ └── actionGroup.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── ActionGroup │ │ │ │ │ └── actionGroup.xml │ │ │ ├── actionGroup-argument-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── ActionGroup │ │ │ │ │ │ └── actionGroup.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── ActionGroup │ │ │ │ │ └── actionGroup.xml │ │ │ ├── actionGroup-argument-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── ActionGroup │ │ │ │ │ │ └── actionGroup.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── ActionGroup │ │ │ │ │ └── actionGroup.xml │ │ │ ├── actionGroup-remove-action-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── ActionGroup │ │ │ │ │ │ └── actionGroup.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── ActionGroup │ │ │ │ │ └── actionGroup.xml │ │ │ ├── actionGroup-remove-action-key-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── ActionGroup │ │ │ │ │ │ └── actionGroup.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── ActionGroup │ │ │ │ │ └── actionGroup.xml │ │ │ ├── actionGroup-remove-action-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── ActionGroup │ │ │ │ │ │ └── actionGroup.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── ActionGroup │ │ │ │ │ └── actionGroup.xml │ │ │ ├── actionGroup-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── ActionGroup │ │ │ │ │ │ └── actionGroup.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── ActionGroup │ │ │ │ │ └── actionGroup.xml │ │ │ ├── data-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Data │ │ │ │ │ │ └── data.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Data │ │ │ │ │ └── data.xml │ │ │ ├── data-array-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Data │ │ │ │ │ │ └── data.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Data │ │ │ │ │ └── data.xml │ │ │ ├── data-array-item-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Data │ │ │ │ │ │ └── data.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Data │ │ │ │ │ └── data.xml │ │ │ ├── data-array-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Data │ │ │ │ │ │ └── data.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Data │ │ │ │ │ └── data.xml │ │ │ ├── data-field-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Data │ │ │ │ │ │ └── data.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Data │ │ │ │ │ └── data.xml │ │ │ ├── data-field-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Data │ │ │ │ │ │ └── data.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Data │ │ │ │ │ └── data.xml │ │ │ ├── data-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Data │ │ │ │ │ │ └── data.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Data │ │ │ │ │ └── data.xml │ │ │ ├── data-reqentity-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Data │ │ │ │ │ │ └── data.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Data │ │ │ │ │ └── data.xml │ │ │ ├── data-reqentity-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Data │ │ │ │ │ │ └── data.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Data │ │ │ │ │ └── data.xml │ │ │ ├── data-var-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Data │ │ │ │ │ │ └── data.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Data │ │ │ │ │ └── data.xml │ │ │ ├── data-var-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Data │ │ │ │ │ │ └── data.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Data │ │ │ │ │ └── data.xml │ │ │ ├── metadata-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Metadata │ │ │ │ │ │ └── meta.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Metadata │ │ │ │ │ └── meta.xml │ │ │ ├── metadata-auth-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Metadata │ │ │ │ │ │ └── meta.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Metadata │ │ │ │ │ └── meta.xml │ │ │ ├── metadata-bottom-level-child-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Metadata │ │ │ │ │ │ └── meta.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Metadata │ │ │ │ │ └── meta.xml │ │ │ ├── metadata-bottom-level-child-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Metadata │ │ │ │ │ │ └── meta.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Metadata │ │ │ │ │ └── meta.xml │ │ │ ├── metadata-datatype-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Metadata │ │ │ │ │ │ └── meta.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Metadata │ │ │ │ │ └── meta.xml │ │ │ ├── metadata-method-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Metadata │ │ │ │ │ │ └── meta.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Metadata │ │ │ │ │ └── meta.xml │ │ │ ├── metadata-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Metadata │ │ │ │ │ │ └── meta.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Metadata │ │ │ │ │ └── meta.xml │ │ │ ├── metadata-top-level-child-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Metadata │ │ │ │ │ │ └── meta.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Metadata │ │ │ │ │ └── meta.xml │ │ │ ├── metadata-top-level-child-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Metadata │ │ │ │ │ │ └── meta.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Metadata │ │ │ │ │ └── meta.xml │ │ │ ├── metadata-type-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Metadata │ │ │ │ │ │ └── meta.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Metadata │ │ │ │ │ └── meta.xml │ │ │ ├── metadata-url-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Metadata │ │ │ │ │ │ └── meta.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Metadata │ │ │ │ │ └── meta.xml │ │ │ ├── new-module-actionGroup-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ ├── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ │ └── ActionGroup │ │ │ │ │ │ │ └── actionGroup.xml │ │ │ │ │ │ └── TestModuleTwo │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── ActionGroup │ │ │ │ │ │ └── actionGroup.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── ActionGroup │ │ │ │ │ └── actionGroup.xml │ │ │ ├── new-module-data-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ ├── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ │ └── Data │ │ │ │ │ │ │ └── data.xml │ │ │ │ │ │ └── TestModuleTwo │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Data │ │ │ │ │ │ └── data.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Data │ │ │ │ │ └── data.xml │ │ │ ├── new-module-metadata-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ ├── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ │ └── Metadata │ │ │ │ │ │ │ └── meta.xml │ │ │ │ │ │ └── TestModuleTwo │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Metadata │ │ │ │ │ │ └── meta.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Metadata │ │ │ │ │ └── meta.xml │ │ │ ├── new-module-page-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ ├── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ │ └── Page │ │ │ │ │ │ │ └── page.xml │ │ │ │ │ │ └── TestModuleTwo │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Page │ │ │ │ │ │ └── page.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Page │ │ │ │ │ └── page.xml │ │ │ ├── new-module-section-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ ├── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ │ └── Section │ │ │ │ │ │ │ └── section.xml │ │ │ │ │ │ └── TestModuleTwo │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Section │ │ │ │ │ │ └── section.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Section │ │ │ │ │ └── section.xml │ │ │ ├── new-module-suite-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ ├── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ │ └── Suite │ │ │ │ │ │ │ └── suite.xml │ │ │ │ │ │ └── TestModuleTwo │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── new-module-test-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ ├── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ │ └── Test │ │ │ │ │ │ │ └── test.xml │ │ │ │ │ │ └── TestModuleTwo │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── test.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Test │ │ │ │ │ └── test.xml │ │ │ ├── page-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Page │ │ │ │ │ │ └── page.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Page │ │ │ │ │ └── page.xml │ │ │ ├── page-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Page │ │ │ │ │ │ └── page.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Page │ │ │ │ │ └── page.xml │ │ │ ├── page-section-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Page │ │ │ │ │ │ └── page.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Page │ │ │ │ │ └── page.xml │ │ │ ├── page-section-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Page │ │ │ │ │ │ └── page.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Page │ │ │ │ │ └── page.xml │ │ │ ├── section-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Section │ │ │ │ │ │ └── section.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Section │ │ │ │ │ └── section.xml │ │ │ ├── section-element-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Section │ │ │ │ │ │ └── section.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Section │ │ │ │ │ └── section.xml │ │ │ ├── section-element-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Section │ │ │ │ │ │ └── section.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Section │ │ │ │ │ └── section.xml │ │ │ ├── section-element-parameterized-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Section │ │ │ │ │ │ └── section.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Section │ │ │ │ │ └── section.xml │ │ │ ├── section-element-parameterized-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Section │ │ │ │ │ │ └── section.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Section │ │ │ │ │ └── section.xml │ │ │ ├── section-element-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Section │ │ │ │ │ │ └── section.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Section │ │ │ │ │ └── section.xml │ │ │ ├── section-element-selector-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Section │ │ │ │ │ │ └── section.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Section │ │ │ │ │ └── section.xml │ │ │ ├── section-element-type-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Section │ │ │ │ │ │ └── section.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Section │ │ │ │ │ └── section.xml │ │ │ ├── section-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Section │ │ │ │ │ │ └── section.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Section │ │ │ │ │ └── section.xml │ │ │ ├── suite-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── suite-after-action-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── suite-after-action-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── suite-after-action-group-ref-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── suite-after-action-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── suite-after-action-sequence-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── suite-after-action-type-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── suite-after-remove-action-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── suite-after-remove-action-key-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── suite-after-remove-action-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── suite-before-action-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── suite-before-action-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── suite-before-action-group-ref-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── suite-before-action-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── suite-before-action-sequence-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── suite-before-action-type-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── suite-before-remove-action-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── suite-before-remove-action-key-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── suite-before-remove-action-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── suite-exclude-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── suite-exclude-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── suite-exclude-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── suite-include-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── suite-include-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── suite-include-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── suite-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Suite │ │ │ │ │ │ └── suite.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Suite │ │ │ │ │ └── suite.xml │ │ │ ├── test-action-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── test.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Test │ │ │ │ │ └── test.xml │ │ │ ├── test-action-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── test.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Test │ │ │ │ │ └── test.xml │ │ │ ├── test-action-group-ref-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── test.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Test │ │ │ │ │ └── test.xml │ │ │ ├── test-action-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── test.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Test │ │ │ │ │ └── test.xml │ │ │ ├── test-action-sequence-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── test.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Test │ │ │ │ │ └── test.xml │ │ │ ├── test-action-type-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── test.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Test │ │ │ │ │ └── test.xml │ │ │ ├── test-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── test.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Test │ │ │ │ │ └── test.xml │ │ │ ├── test-after-action-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── test.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Test │ │ │ │ │ └── test.xml │ │ │ ├── test-after-action-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── test.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Test │ │ │ │ │ └── test.xml │ │ │ ├── test-after-action-sequence-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── test.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Test │ │ │ │ │ └── test.xml │ │ │ ├── test-annotation-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── test.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Test │ │ │ │ │ └── test.xml │ │ │ ├── test-before-action-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── test.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Test │ │ │ │ │ └── test.xml │ │ │ ├── test-before-action-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── test.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Test │ │ │ │ │ └── test.xml │ │ │ ├── test-before-action-sequence-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── test.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Test │ │ │ │ │ └── test.xml │ │ │ ├── test-group-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── test.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Test │ │ │ │ │ └── test.xml │ │ │ ├── test-remove-action-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── test.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Test │ │ │ │ │ └── test.xml │ │ │ ├── test-remove-action-key-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── test.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Test │ │ │ │ │ └── test.xml │ │ │ ├── test-remove-action-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── Mftf │ │ │ │ │ │ └── Test │ │ │ │ │ │ └── test.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Test │ │ │ │ │ └── test.xml │ │ │ └── test-removed │ │ │ │ ├── source-code-after │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── Test │ │ │ │ │ └── Mftf │ │ │ │ │ └── Test │ │ │ │ │ └── test.xml │ │ │ │ └── source-code-before │ │ │ │ └── Magento │ │ │ │ └── TestModule │ │ │ │ └── Test │ │ │ │ └── Mftf │ │ │ │ └── Test │ │ │ │ └── test.xml │ │ │ ├── non-api-class │ │ │ ├── added-method-subclass-overwrite-transition │ │ │ │ ├── source-code-after │ │ │ │ │ ├── ClassA.php │ │ │ │ │ ├── ClassB.php │ │ │ │ │ └── ClassC.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── ClassA.php │ │ │ │ │ ├── ClassB.php │ │ │ │ │ └── ClassC.php │ │ │ ├── docblock-return-type-not-changed │ │ │ │ ├── source-code-after │ │ │ │ │ ├── InterfaceNs │ │ │ │ │ │ └── TestInterface.php │ │ │ │ │ ├── Parent │ │ │ │ │ │ └── ParentTestClass.php │ │ │ │ │ ├── Path │ │ │ │ │ │ └── TestClass2.php │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── InterfaceNs │ │ │ │ │ └── TestInterface.php │ │ │ │ │ ├── Parent │ │ │ │ │ └── ParentTestClass.php │ │ │ │ │ ├── Path │ │ │ │ │ └── TestClass2.php │ │ │ │ │ └── TestClass.php │ │ │ ├── exception-subclass-added │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestParentException.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestParentException.php │ │ │ ├── exception-subclassed │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestParentException.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestParentException.php │ │ │ ├── exception-superclass-added │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestParentException.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestParentException.php │ │ │ ├── exception-superclassed │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestParentException.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestParentException.php │ │ │ ├── new-class │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestInterface.php │ │ │ ├── new-method │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── new-optional-constructor-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── new-required-constructor-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── new-required-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── new-required-scalar-constructor-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── protected-property-overwrite │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestClassParent.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestClassParent.php │ │ │ ├── public-property-overwrite │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestClassParent.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestClassParent.php │ │ │ ├── removed-class │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestClass.php │ │ │ │ │ └── TestInterface.php │ │ │ ├── removed-last-constructor-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── removed-method │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── removed-non-last-constructor-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── removed-optional-non-last-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── removed-required-last-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ ├── removed-required-method-parameter-followed-by-optional-one │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestClass.php │ │ │ └── removed-required-non-last-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ └── TestClass.php │ │ │ │ └── source-code-before │ │ │ │ └── TestClass.php │ │ │ ├── non-api-interface │ │ │ ├── docblock-return-type-not-changed │ │ │ │ ├── source-code-after │ │ │ │ │ ├── Parent │ │ │ │ │ │ └── ParentTestInterface.php │ │ │ │ │ ├── Path │ │ │ │ │ │ └── TestClass2.php │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── Parent │ │ │ │ │ └── ParentTestInterface.php │ │ │ │ │ ├── Path │ │ │ │ │ └── TestClass2.php │ │ │ │ │ └── TestInterface.php │ │ │ ├── exception-subclass-added │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestInterface.php │ │ │ │ │ └── TestParentException.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestInterface.php │ │ │ │ │ └── TestParentException.php │ │ │ ├── exception-subclassed │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestInterface.php │ │ │ │ │ └── TestParentException.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestInterface.php │ │ │ │ │ └── TestParentException.php │ │ │ ├── exception-superclass-added │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestInterface.php │ │ │ │ │ └── TestParentException.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestInterface.php │ │ │ │ │ └── TestParentException.php │ │ │ ├── exception-superclassed │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestInterface.php │ │ │ │ │ └── TestParentException.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestChildException.php │ │ │ │ │ ├── TestInterface.php │ │ │ │ │ └── TestParentException.php │ │ │ ├── new-interface │ │ │ │ ├── source-code-after │ │ │ │ │ ├── TestAInterface.php │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestInterface.php │ │ │ ├── new-method │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestInterface.php │ │ │ ├── new-optional-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestInterface.php │ │ │ ├── new-required-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestInterface.php │ │ │ ├── removed-interface │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ ├── TestAInterface.php │ │ │ │ │ └── TestInterface.php │ │ │ ├── removed-last-required-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestInterface.php │ │ │ ├── removed-method │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestInterface.php │ │ │ └── renamed-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ └── TestInterface.php │ │ │ │ └── source-code-before │ │ │ │ └── TestInterface.php │ │ │ ├── non-api-trait │ │ │ ├── changed-method-parameter-type │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── changed-method-return-type │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── new-method-parameter-type │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── new-method │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── new-optional-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── new-required-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── no-change │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── private-method-changed │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── removed-method-parameter-type │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── removed-method │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── removed-optional-non-last-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── removed-required-last-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ ├── removed-required-method-parameter-followed-by-optional-one │ │ │ │ ├── source-code-after │ │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ │ └── TestTrait.php │ │ │ └── removed-required-non-last-method-parameter │ │ │ │ ├── source-code-after │ │ │ │ └── TestTrait.php │ │ │ │ └── source-code-before │ │ │ │ └── TestTrait.php │ │ │ ├── system_xml │ │ │ ├── field-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── etc │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ └── system.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── adminhtml │ │ │ │ │ └── system.xml │ │ │ ├── field-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── etc │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ └── system.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── adminhtml │ │ │ │ │ └── system.xml │ │ │ ├── file-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── etc │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ └── system.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── adminhtml │ │ │ │ │ └── .gitkeep │ │ │ ├── file-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── etc │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ └── .gitkeep │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── adminhtml │ │ │ │ │ └── system.xml │ │ │ ├── group-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── etc │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ └── system.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── adminhtml │ │ │ │ │ └── system.xml │ │ │ ├── group-removed │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── etc │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ └── system.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── adminhtml │ │ │ │ │ └── system.xml │ │ │ ├── no-change │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── etc │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ └── system.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── adminhtml │ │ │ │ │ └── system.xml │ │ │ ├── section-added │ │ │ │ ├── source-code-after │ │ │ │ │ └── Magento │ │ │ │ │ │ └── TestModule │ │ │ │ │ │ └── etc │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ └── system.xml │ │ │ │ └── source-code-before │ │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── adminhtml │ │ │ │ │ └── system.xml │ │ │ └── section-removed │ │ │ │ ├── source-code-after │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── adminhtml │ │ │ │ │ └── system.xml │ │ │ │ └── source-code-before │ │ │ │ └── Magento │ │ │ │ └── TestModule │ │ │ │ └── etc │ │ │ │ └── adminhtml │ │ │ │ └── system.xml │ │ │ └── xsd-schema │ │ │ ├── attribute-removed │ │ │ ├── source-code-after │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── test-schema.xsd │ │ │ └── source-code-before │ │ │ │ └── Magento │ │ │ │ └── TestModule │ │ │ │ └── etc │ │ │ │ └── test-schema.xsd │ │ │ ├── module-added │ │ │ ├── source-code-after │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── test-schema.xsd │ │ │ └── source-code-before │ │ │ │ └── Magento │ │ │ │ └── .gitkeep │ │ │ ├── module-removed │ │ │ ├── source-code-after │ │ │ │ └── Magento │ │ │ │ │ └── .gitkeep │ │ │ └── source-code-before │ │ │ │ └── Magento │ │ │ │ └── TestModule │ │ │ │ └── etc │ │ │ │ └── test-schema.xsd │ │ │ ├── no-change │ │ │ ├── source-code-after │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── test-schema.xsd │ │ │ └── source-code-before │ │ │ │ └── Magento │ │ │ │ └── TestModule │ │ │ │ └── etc │ │ │ │ └── test-schema.xsd │ │ │ ├── node-removed │ │ │ ├── source-code-after │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── test-schema.xsd │ │ │ └── source-code-before │ │ │ │ └── Magento │ │ │ │ └── TestModule │ │ │ │ └── etc │ │ │ │ └── test-schema.xsd │ │ │ ├── optional-attribute-added │ │ │ ├── source-code-after │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── test-schema.xsd │ │ │ └── source-code-before │ │ │ │ └── Magento │ │ │ │ └── TestModule │ │ │ │ └── etc │ │ │ │ └── test-schema.xsd │ │ │ ├── optional-node-added │ │ │ ├── source-code-after │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── test-schema.xsd │ │ │ └── source-code-before │ │ │ │ └── Magento │ │ │ │ └── TestModule │ │ │ │ └── etc │ │ │ │ └── test-schema.xsd │ │ │ ├── required-attribute-added │ │ │ ├── source-code-after │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── test-schema.xsd │ │ │ └── source-code-before │ │ │ │ └── Magento │ │ │ │ └── TestModule │ │ │ │ └── etc │ │ │ │ └── test-schema.xsd │ │ │ ├── required-node-added │ │ │ ├── source-code-after │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── test-schema.xsd │ │ │ └── source-code-before │ │ │ │ └── Magento │ │ │ │ └── TestModule │ │ │ │ └── etc │ │ │ │ └── test-schema.xsd │ │ │ ├── schema-declaration-added │ │ │ ├── source-code-after │ │ │ │ └── Magento │ │ │ │ │ └── TestModule │ │ │ │ │ └── etc │ │ │ │ │ └── test-schema.xsd │ │ │ └── source-code-before │ │ │ │ └── Magento │ │ │ │ └── TestModule │ │ │ │ └── etc │ │ │ │ └── .gitkeep │ │ │ └── schema-declaration-removed │ │ │ ├── source-code-after │ │ │ └── Magento │ │ │ │ └── TestModule │ │ │ │ └── etc │ │ │ │ └── .gitkeep │ │ │ └── source-code-before │ │ │ └── Magento │ │ │ └── TestModule │ │ │ └── etc │ │ │ └── test-schema.xsd │ │ ├── CompareSourceCommandXsdSchemasTest.php │ │ ├── HierarchyTest.php │ │ ├── HierarchyTest │ │ └── _files │ │ │ ├── public-method-removed-from-non-api-interface-extented-by-api-interface │ │ │ ├── source-code-after │ │ │ │ ├── ApiInterface.php │ │ │ │ └── BaseInterface.php │ │ │ └── source-code-before │ │ │ │ ├── ApiInterface.php │ │ │ │ └── BaseInterface.php │ │ │ ├── public-method-removed-from-non-api-interface-implemented-by-class │ │ │ ├── source-code-after │ │ │ │ ├── ApiClass.php │ │ │ │ └── BaseInterface.php │ │ │ └── source-code-before │ │ │ │ ├── ApiClass.php │ │ │ │ └── BaseInterface.php │ │ │ ├── public-method-removed-from-non-api-parent-class-extended-by-api-class │ │ │ ├── source-code-after │ │ │ │ ├── AbstractBaseClass.php │ │ │ │ └── ApiClass.php │ │ │ └── source-code-before │ │ │ │ ├── AbstractBaseClass.php │ │ │ │ └── ApiClass.php │ │ │ ├── public-method-removed-from-non-api-trait-used-by-api-class │ │ │ ├── source-code-after │ │ │ │ ├── ApiClass.php │ │ │ │ └── BaseTrait.php │ │ │ └── source-code-before │ │ │ │ ├── ApiClass.php │ │ │ │ └── BaseTrait.php │ │ │ └── public-method-removed-from-non-api-trait-used-by-api-trait │ │ │ ├── source-code-after │ │ │ ├── ApiTrait.php │ │ │ └── BaseTrait.php │ │ │ └── source-code-before │ │ │ ├── ApiTrait.php │ │ │ └── BaseTrait.php │ │ └── HtmlTest.php │ ├── FileChangeDetectorTest.php │ ├── FileChangeDetectorTest │ └── _files │ │ ├── after │ │ ├── added_file.txt │ │ ├── changed_json_file.json │ │ ├── changed_text_file.txt │ │ └── identical_file.txt │ │ └── before │ │ ├── changed_json_file.json │ │ ├── changed_text_file.txt │ │ ├── identical_file.txt │ │ └── removed_file.txt │ ├── Filter │ └── AllowedChangeFilter │ │ ├── ComposerVersionFilterTest.php │ │ ├── ComposerVersionFilterTest │ │ └── _files │ │ │ ├── filtered_changes_remain │ │ │ ├── expected │ │ │ │ ├── after │ │ │ │ │ └── composer.json │ │ │ │ └── before │ │ │ │ │ └── composer.json │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── composer.json │ │ │ │ └── before │ │ │ │ └── composer.json │ │ │ ├── ignore_non_composer_file │ │ │ ├── expected │ │ │ │ ├── after │ │ │ │ │ └── non_composer.txt │ │ │ │ └── before │ │ │ │ │ └── non_composer.txt │ │ │ └── input │ │ │ │ ├── after │ │ │ │ ├── composer.json │ │ │ │ └── non_composer.txt │ │ │ │ └── before │ │ │ │ ├── composer.json │ │ │ │ └── non_composer.txt │ │ │ ├── new_composer_file │ │ │ ├── expected │ │ │ │ ├── after │ │ │ │ │ ├── composer.json │ │ │ │ │ └── non_composer.txt │ │ │ │ └── before │ │ │ │ │ └── non_composer.txt │ │ │ └── input │ │ │ │ ├── after │ │ │ │ ├── composer.json │ │ │ │ └── non_composer.txt │ │ │ │ └── before │ │ │ │ └── non_composer.txt │ │ │ ├── package_version_name_matches │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── composer.json │ │ │ │ └── before │ │ │ │ └── composer.json │ │ │ ├── package_version_name_matches_no_version │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── composer.json │ │ │ │ └── before │ │ │ │ └── composer.json │ │ │ ├── package_version_no_name_match │ │ │ ├── expected │ │ │ │ ├── after │ │ │ │ │ └── composer.json │ │ │ │ └── before │ │ │ │ │ └── composer.json │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── composer.json │ │ │ │ └── before │ │ │ │ └── composer.json │ │ │ ├── package_version_no_version_match │ │ │ ├── expected │ │ │ │ ├── after │ │ │ │ │ └── composer.json │ │ │ │ └── before │ │ │ │ │ └── composer.json │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── composer.json │ │ │ │ └── before │ │ │ │ └── composer.json │ │ │ ├── removed_composer_file │ │ │ ├── expected │ │ │ │ ├── after │ │ │ │ │ └── non_composer.txt │ │ │ │ └── before │ │ │ │ │ ├── composer.json │ │ │ │ │ └── non_composer.txt │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── non_composer.txt │ │ │ │ └── before │ │ │ │ ├── composer.json │ │ │ │ └── non_composer.txt │ │ │ ├── require_section_dependency_matches │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── composer.json │ │ │ │ └── before │ │ │ │ └── composer.json │ │ │ ├── require_section_no_constraint_match │ │ │ ├── expected │ │ │ │ ├── after │ │ │ │ │ └── composer.json │ │ │ │ └── before │ │ │ │ │ └── composer.json │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── composer.json │ │ │ │ └── before │ │ │ │ └── composer.json │ │ │ └── require_section_no_dependency_match │ │ │ ├── expected │ │ │ ├── after │ │ │ │ └── composer.json │ │ │ └── before │ │ │ │ └── composer.json │ │ │ └── input │ │ │ ├── after │ │ │ └── composer.json │ │ │ └── before │ │ │ └── composer.json │ │ ├── PhpCommentFormattingFilterTest.php │ │ ├── PhpCommentFormattingFilterTest │ │ └── _files │ │ │ ├── condensed_comments_match │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── CondensedCommentsMatch.php │ │ │ │ └── before │ │ │ │ └── CondensedCommentsMatch.php │ │ │ ├── filtered_changes_remain │ │ │ ├── expected │ │ │ │ ├── after │ │ │ │ │ └── FilteredChangesRemain.php │ │ │ │ └── before │ │ │ │ │ └── FilteredChangesRemain.php │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── FilteredChangesRemain.php │ │ │ │ └── before │ │ │ │ └── FilteredChangesRemain.php │ │ │ ├── ignore_non_php_file │ │ │ ├── expected │ │ │ │ ├── after │ │ │ │ │ └── non_php.txt │ │ │ │ └── before │ │ │ │ │ └── non_php.txt │ │ │ └── input │ │ │ │ ├── after │ │ │ │ ├── FilterPhpFilesOnly.php │ │ │ │ └── non_php.txt │ │ │ │ └── before │ │ │ │ ├── FilterPhpFilesOnly.php │ │ │ │ └── non_php.txt │ │ │ ├── new_php_file │ │ │ ├── expected │ │ │ │ ├── after │ │ │ │ │ ├── AddedPhpFile.php │ │ │ │ │ └── non_php.txt │ │ │ │ └── before │ │ │ │ │ └── non_php.txt │ │ │ └── input │ │ │ │ ├── after │ │ │ │ ├── AddedPhpFile.php │ │ │ │ └── non_php.txt │ │ │ │ └── before │ │ │ │ └── non_php.txt │ │ │ ├── normalized_comments_match │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── NormalizedCommentsMatch.php │ │ │ │ └── before │ │ │ │ └── NormalizedCommentsMatch.php │ │ │ ├── removed_php_file │ │ │ ├── expected │ │ │ │ ├── after │ │ │ │ │ └── non_php.txt │ │ │ │ └── before │ │ │ │ │ ├── RemovedPhpFile.php │ │ │ │ │ └── non_php.txt │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── non_php.txt │ │ │ │ └── before │ │ │ │ ├── RemovedPhpFile.php │ │ │ │ └── non_php.txt │ │ │ └── trimmed_empty_comments_match │ │ │ └── input │ │ │ ├── after │ │ │ └── TrimmedEmptyCommentsMatch.php │ │ │ └── before │ │ │ └── TrimmedEmptyCommentsMatch.php │ │ ├── PhpIgnoredTagFilterTest.php │ │ ├── PhpIgnoredTagFilterTest │ │ └── _files │ │ │ ├── add_ignored_tag_only_comment │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── AddIgnoredTagOnlyComment.php │ │ │ │ └── before │ │ │ │ └── AddIgnoredTagOnlyComment.php │ │ │ ├── added_ignored_tag_values │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── AddedIgnoredTagValues.php │ │ │ │ └── before │ │ │ │ └── AddedIgnoredTagValues.php │ │ │ ├── added_ignored_tags │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── AddedIgnoredTags.php │ │ │ │ └── before │ │ │ │ └── AddedIgnoredTags.php │ │ │ ├── added_non_ignored_tag_values │ │ │ ├── expected │ │ │ │ ├── after │ │ │ │ │ └── AddedNonIgnoredTagValues.php │ │ │ │ └── before │ │ │ │ │ └── AddedNonIgnoredTagValues.php │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── AddedNonIgnoredTagValues.php │ │ │ │ └── before │ │ │ │ └── AddedNonIgnoredTagValues.php │ │ │ ├── added_non_ignored_tags │ │ │ ├── expected │ │ │ │ ├── after │ │ │ │ │ └── AddedNonIgnoredTags.php │ │ │ │ └── before │ │ │ │ │ └── AddedNonIgnoredTags.php │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── AddedNonIgnoredTags.php │ │ │ │ └── before │ │ │ │ └── AddedNonIgnoredTags.php │ │ │ ├── added_tags_with_ignored_values │ │ │ ├── expected │ │ │ │ ├── after │ │ │ │ │ └── AddedTagsWithIgnoredValues.php │ │ │ │ └── before │ │ │ │ │ └── AddedTagsWithIgnoredValues.php │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── AddedTagsWithIgnoredValues.php │ │ │ │ └── before │ │ │ │ └── AddedTagsWithIgnoredValues.php │ │ │ ├── case_sensitive │ │ │ ├── expected │ │ │ │ ├── after │ │ │ │ │ └── CaseSensitive.php │ │ │ │ └── before │ │ │ │ │ └── CaseSensitive.php │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── CaseSensitive.php │ │ │ │ └── before │ │ │ │ └── CaseSensitive.php │ │ │ ├── changed_ignored_tag_values │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── ChangedIgnoredTagValues.php │ │ │ │ └── before │ │ │ │ └── ChangedIgnoredTagValues.php │ │ │ ├── changed_non_ignored_tag_values │ │ │ ├── expected │ │ │ │ ├── after │ │ │ │ │ └── ChangedNonIgnoredTagValues.php │ │ │ │ └── before │ │ │ │ │ └── ChangedNonIgnoredTagValues.php │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── ChangedNonIgnoredTagValues.php │ │ │ │ └── before │ │ │ │ └── ChangedNonIgnoredTagValues.php │ │ │ ├── ignore_case │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── IgnoreCase.php │ │ │ │ └── before │ │ │ │ └── IgnoreCase.php │ │ │ ├── ignore_non_php_file │ │ │ ├── expected │ │ │ │ ├── after │ │ │ │ │ └── non_php.txt │ │ │ │ └── before │ │ │ │ │ └── non_php.txt │ │ │ └── input │ │ │ │ ├── after │ │ │ │ ├── FilterPhpFilesOnly.php │ │ │ │ └── non_php.txt │ │ │ │ └── before │ │ │ │ ├── FilterPhpFilesOnly.php │ │ │ │ └── non_php.txt │ │ │ ├── multiple_ignored_tag_values │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── MultipleIgnoredTagValues.php │ │ │ │ └── before │ │ │ │ └── MultipleIgnoredTagValues.php │ │ │ ├── multiple_ignored_tags │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── MultipleIgnoredTags.php │ │ │ │ └── before │ │ │ │ └── MultipleIgnoredTags.php │ │ │ ├── new_php_file │ │ │ ├── expected │ │ │ │ ├── after │ │ │ │ │ ├── AddedPhpFile.php │ │ │ │ │ └── non_php.txt │ │ │ │ └── before │ │ │ │ │ └── non_php.txt │ │ │ └── input │ │ │ │ ├── after │ │ │ │ ├── AddedPhpFile.php │ │ │ │ └── non_php.txt │ │ │ │ └── before │ │ │ │ └── non_php.txt │ │ │ ├── remove_ignored_tag_only_comment │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── RemoveIgnoredTagOnlyComment.php │ │ │ │ └── before │ │ │ │ └── RemoveIgnoredTagOnlyComment.php │ │ │ ├── removed_ignored_tag_values │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── RemovedIgnoredTagValues.php │ │ │ │ └── before │ │ │ │ └── RemovedIgnoredTagValues.php │ │ │ ├── removed_ignored_tags │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── RemovedIgnoredTags.php │ │ │ │ └── before │ │ │ │ └── RemovedIgnoredTags.php │ │ │ ├── removed_non_ignored_tag_values │ │ │ ├── expected │ │ │ │ ├── after │ │ │ │ │ └── RemovedNonIgnoredTagValues.php │ │ │ │ └── before │ │ │ │ │ └── RemovedNonIgnoredTagValues.php │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── RemovedNonIgnoredTagValues.php │ │ │ │ └── before │ │ │ │ └── RemovedNonIgnoredTagValues.php │ │ │ ├── removed_non_ignored_tags │ │ │ ├── expected │ │ │ │ ├── after │ │ │ │ │ └── RemovedNonIgnoredTags.php │ │ │ │ └── before │ │ │ │ │ └── RemovedNonIgnoredTags.php │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── RemovedNonIgnoredTags.php │ │ │ │ └── before │ │ │ │ └── RemovedNonIgnoredTags.php │ │ │ ├── removed_php_file │ │ │ ├── expected │ │ │ │ ├── after │ │ │ │ │ └── non_php.txt │ │ │ │ └── before │ │ │ │ │ ├── RemovedPhpFile.php │ │ │ │ │ └── non_php.txt │ │ │ └── input │ │ │ │ ├── after │ │ │ │ └── non_php.txt │ │ │ │ └── before │ │ │ │ ├── RemovedPhpFile.php │ │ │ │ └── non_php.txt │ │ │ └── removed_tags_with_ignored_values │ │ │ ├── expected │ │ │ ├── after │ │ │ │ └── RemovedTagsWithIgnoredValues.php │ │ │ └── before │ │ │ │ └── RemovedTagsWithIgnoredValues.php │ │ │ └── input │ │ │ ├── after │ │ │ └── RemovedTagsWithIgnoredValues.php │ │ │ └── before │ │ │ └── RemovedTagsWithIgnoredValues.php │ │ ├── PhpWhitespaceFilterTest.php │ │ └── PhpWhitespaceFilterTest │ │ └── _files │ │ ├── filtered_changes_remain │ │ ├── expected │ │ │ ├── after │ │ │ │ └── FilteredChangesRemain.php │ │ │ └── before │ │ │ │ └── FilteredChangesRemain.php │ │ └── input │ │ │ ├── after │ │ │ └── FilteredChangesRemain.php │ │ │ └── before │ │ │ └── FilteredChangesRemain.php │ │ ├── ignore_non_php_file │ │ ├── expected │ │ │ ├── after │ │ │ │ └── non_php.txt │ │ │ └── before │ │ │ │ └── non_php.txt │ │ └── input │ │ │ ├── after │ │ │ ├── FilterPhpFilesOnly.php │ │ │ └── non_php.txt │ │ │ └── before │ │ │ ├── FilterPhpFilesOnly.php │ │ │ └── non_php.txt │ │ ├── new_php_file │ │ ├── expected │ │ │ ├── after │ │ │ │ ├── AddedPhpFile.php │ │ │ │ └── non_php.txt │ │ │ └── before │ │ │ │ └── non_php.txt │ │ └── input │ │ │ ├── after │ │ │ ├── AddedPhpFile.php │ │ │ └── non_php.txt │ │ │ └── before │ │ │ └── non_php.txt │ │ ├── removed_php_file │ │ ├── expected │ │ │ ├── after │ │ │ │ └── non_php.txt │ │ │ └── before │ │ │ │ ├── RemovedPhpFile.php │ │ │ │ └── non_php.txt │ │ └── input │ │ │ ├── after │ │ │ └── non_php.txt │ │ │ └── before │ │ │ ├── RemovedPhpFile.php │ │ │ └── non_php.txt │ │ ├── trimmed_extra_lines_match │ │ └── input │ │ │ ├── after │ │ │ └── TrimmedExtraLinesMatch.php │ │ │ └── before │ │ │ └── TrimmedExtraLinesMatch.php │ │ └── trimmed_spaces_match │ │ └── input │ │ ├── after │ │ └── TrimmedSpacesMatch.php │ │ └── before │ │ └── TrimmedSpacesMatch.php │ ├── Helper │ ├── ClassParserTest.php │ └── _files │ │ ├── ClassA.php │ │ ├── ClassExtendAlias.php │ │ ├── ClassExtendFull.php │ │ └── InterfaceA.php │ ├── MergedReportTest.php │ ├── Reporter │ └── HtmlTargetDecoratorTest.php │ ├── bootstrap.php │ ├── phpunit.xml.dist │ └── tmp │ └── .gitignore ├── src ├── Analyzer │ ├── AbstractCodeAnalyzer.php │ ├── Analyzer.php │ ├── AnalyzerInterface.php │ ├── ApiClassAnalyzer.php │ ├── ApiInterfaceAnalyzer.php │ ├── ClassAnalyzer.php │ ├── ClassConstantAnalyzer.php │ ├── ClassExtendsAnalyzer.php │ ├── ClassImplementsAnalyzer.php │ ├── ClassLikeApiAnnotationAnalyzer.php │ ├── ClassMethodAnalyzer.php │ ├── ClassMethodExceptionAnalyzer.php │ ├── ClassTraitAnalyzer.php │ ├── DBSchema │ │ ├── DbSchemaColumnAnalyzer.php │ │ ├── DbSchemaForeignKeyAnalyzer.php │ │ ├── DbSchemaPrimaryKeyAnalyzer.php │ │ ├── DbSchemaTableAnalyzer.php │ │ ├── DbSchemaUniqueKeyAnalyzer.php │ │ ├── DbSchemaWhitelistAnalyzer.php │ │ └── DbSchemaWhitelistReductionOrRemovalAnalyzer.php │ ├── DbSchemaAnalyzer.php │ ├── DiXml │ │ └── VirtualTypeAnalyzer.php │ ├── EtSchemaAnalyzer.php │ ├── Factory │ │ ├── AnalyzerFactory.php │ │ ├── AnalyzerFactoryInterface.php │ │ ├── DbSchemaAnalyzerFactory.php │ │ ├── DiAnalyzerFactory.php │ │ ├── EtSchemaAnalyzerFactory.php │ │ ├── LayoutAnalyzerFactory.php │ │ ├── LessAnalyzerFactory.php │ │ ├── MftfAnalyzerFactory.php │ │ ├── NonApiAnalyzerFactory.php │ │ ├── SystemXmlAnalyzerFactory.php │ │ └── XsdAnalyzerFactory.php │ ├── InterfaceAnalyzer.php │ ├── InterfaceExtendsAnalyzer.php │ ├── Layout │ │ └── Analyzer.php │ ├── Less │ │ └── Analyzer.php │ ├── MethodDocBlockAnalyzer.php │ ├── Mftf │ │ ├── AbstractEntityAnalyzer.php │ │ ├── ActionGroupAnalyzer.php │ │ ├── DataAnalyzer.php │ │ ├── MetadataAnalyzer.php │ │ ├── PageAnalyzer.php │ │ ├── SectionAnalyzer.php │ │ ├── SuiteAnalyzer.php │ │ └── TestAnalyzer.php │ ├── NonApiAnalyzer.php │ ├── PropertyAnalyzer.php │ ├── SystemXml │ │ └── Analyzer.php │ ├── TraitAnalyzer.php │ └── Xsd │ │ └── Analyzer.php ├── ClassHierarchy │ ├── DependencyGraph.php │ ├── DependencyInspectionVisitor.php │ ├── Entity.php │ ├── EntityFactory.php │ ├── StaticAnalyzer.php │ └── StaticAnalyzerFactory.php ├── Comparator │ ├── Signature.php │ ├── Type.php │ └── Visibility.php ├── Console │ └── Command │ │ ├── CompareSourceCommand.php │ │ └── css │ │ └── bootstrap.min.css ├── DbSchemaReport.php ├── DbSchemaReporter.php ├── FileChangeDetector.php ├── Filter │ ├── AllowedChangeFilter │ │ ├── ChangedFileFilterInterface.php │ │ ├── ComposerVersionFilter.php │ │ ├── PhpCommentFormattingFilter.php │ │ ├── PhpIgnoredTagFilter.php │ │ └── PhpWhitespaceFilter.php │ ├── FilePatternFilter.php │ ├── SourceFilter.php │ └── SourceWithJsonFilter.php ├── Finder │ ├── DbSchemaFinderDecorator.php │ ├── FinderDecorator.php │ └── FinderDecoratorFactory.php ├── Glob.php ├── Helper │ ├── ClassParser.php │ ├── Node.php │ └── PackageNameResolver.php ├── InjectableReport.php ├── MergedReport.php ├── MftfReport.php ├── Node │ ├── Layout │ │ ├── Block.php │ │ ├── Container.php │ │ ├── LayoutNodeInterface.php │ │ └── Update.php │ ├── Statement │ │ └── ClassConstant.php │ ├── SystemXml │ │ ├── Field.php │ │ ├── Group.php │ │ ├── NodeInterface.php │ │ └── Section.php │ ├── VirtualType.php │ └── Xsd │ │ ├── AttributeNode.php │ │ ├── ElementNode.php │ │ └── NodeInterface.php ├── Operation │ ├── AbstractOperation.php │ ├── ClassConstantAdded.php │ ├── ClassConstantMoved.php │ ├── ClassConstantOperation.php │ ├── ClassConstantRemoved.php │ ├── ClassConstructorLastParameterRemoved.php │ ├── ClassConstructorObjectParameterAdded.php │ ├── ClassConstructorOptionalParameterAdded.php │ ├── ClassExtendsAdded.php │ ├── ClassExtendsRemove.php │ ├── ClassImplementsAdded.php │ ├── ClassImplementsRemove.php │ ├── ClassLikeApiAnnotationAdded.php │ ├── ClassLikeApiAnnotationOperation.php │ ├── ClassLikeApiAnnotationRemoved.php │ ├── ClassMethodLastParameterRemoved.php │ ├── ClassMethodMoved.php │ ├── ClassMethodOptionalParameterAdded.php │ ├── ClassMethodOverwriteAdded.php │ ├── ClassMethodOverwriteRemoved.php │ ├── ClassMethodParameterTypingChanged.php │ ├── ClassMethodParameterTypingChangedNullable.php │ ├── ClassMethodReturnTypingChanged.php │ ├── ClassTraitAdded.php │ ├── ColumnAdd.php │ ├── ColumnRemove.php │ ├── DiXml │ │ ├── VirtualTypeChanged.php │ │ ├── VirtualTypeRemoved.php │ │ └── VirtualTypeToTypeChanged.php │ ├── DocblockAnnotations │ │ ├── ClassMethodParameterTypeMovedFromDocToInline.php │ │ ├── ClassMethodParameterTypeMovedFromInlineToDoc.php │ │ ├── ClassMethodReturnTypeMovedFromDocToInline.php │ │ ├── ClassMethodReturnTypeMovedFromInlineToDoc.php │ │ ├── ClassMethodVariableTypeMovedFromDocToInline.php │ │ └── ClassMethodVariableTypeMovedFromInlineToDoc.php │ ├── DropForeignKey.php │ ├── DropKey.php │ ├── EtSchema │ │ └── EtSchemaOperation.php │ ├── ExceptionSubclassed.php │ ├── ExceptionSuperclassAdded.php │ ├── ExceptionSuperclassed.php │ ├── ExtendableClassConstructorOptionalParameterAdded.php │ ├── ForeignKeyAdd.php │ ├── ForeignKeyChange.php │ ├── ForeignKeyDrop.php │ ├── InterfaceExtendsAdded.php │ ├── InterfaceExtendsRemove.php │ ├── InvalidWhitelist.php │ ├── Layout │ │ ├── BlockRemoved.php │ │ ├── ContainerRemoved.php │ │ └── UpdateRemoved.php │ ├── Less │ │ ├── ImportRemoved.php │ │ ├── MixinParameterAdded.php │ │ ├── MixinRemoved.php │ │ └── VariableRemoved.php │ ├── Mftf │ │ ├── ActionGroup │ │ │ ├── ActionGroupActionAdded.php │ │ │ ├── ActionGroupActionChanged.php │ │ │ ├── ActionGroupActionRemoved.php │ │ │ ├── ActionGroupActionTypeChanged.php │ │ │ ├── ActionGroupAdded.php │ │ │ ├── ActionGroupArgumentAdded.php │ │ │ ├── ActionGroupArgumentChanged.php │ │ │ ├── ActionGroupArgumentRemoved.php │ │ │ ├── ActionGroupRemoveActionAdded.php │ │ │ ├── ActionGroupRemoveActionRemoved.php │ │ │ └── ActionGroupRemoved.php │ │ ├── Data │ │ │ ├── DataEntityAdded.php │ │ │ ├── DataEntityArrayAdded.php │ │ │ ├── DataEntityArrayItemRemoved.php │ │ │ ├── DataEntityArrayRemoved.php │ │ │ ├── DataEntityFieldAdded.php │ │ │ ├── DataEntityFieldRemoved.php │ │ │ ├── DataEntityRemoved.php │ │ │ ├── DataEntityReqEntityAdded.php │ │ │ ├── DataEntityReqEntityRemoved.php │ │ │ ├── DataEntityVarAdded.php │ │ │ └── DataEntityVarRemoved.php │ │ ├── Metadata │ │ │ ├── MetadataAdded.php │ │ │ ├── MetadataChanged.php │ │ │ ├── MetadataChildAdded.php │ │ │ ├── MetadataChildRemoved.php │ │ │ └── MetadataRemoved.php │ │ ├── MftfOperation.php │ │ ├── Page │ │ │ ├── PageAdded.php │ │ │ ├── PageRemoved.php │ │ │ ├── PageSectionAdded.php │ │ │ └── PageSectionRemoved.php │ │ ├── Section │ │ │ ├── SectionAdded.php │ │ │ ├── SectionElementAdded.php │ │ │ ├── SectionElementChanged.php │ │ │ ├── SectionElementParameterizedChanged.php │ │ │ ├── SectionElementRemoved.php │ │ │ ├── SectionElementSelectorChanged.php │ │ │ ├── SectionElementTypeChanged.php │ │ │ └── SectionRemoved.php │ │ ├── Suite │ │ │ ├── SuiteAdded.php │ │ │ ├── SuiteBeforeAfterActionAdded.php │ │ │ ├── SuiteBeforeAfterActionChanged.php │ │ │ ├── SuiteBeforeAfterActionGroupRefChanged.php │ │ │ ├── SuiteBeforeAfterActionRemoved.php │ │ │ ├── SuiteBeforeAfterActionSequenceChanged.php │ │ │ ├── SuiteBeforeAfterActionTypeChanged.php │ │ │ ├── SuiteBeforeAfterRemoveActionAdded.php │ │ │ ├── SuiteBeforeAfterRemoveActionRemoved.php │ │ │ ├── SuiteIncludeExcludeAdded.php │ │ │ ├── SuiteIncludeExcludeRemoved.php │ │ │ └── SuiteRemoved.php │ │ └── Test │ │ │ ├── TestActionAdded.php │ │ │ ├── TestActionChanged.php │ │ │ ├── TestActionGroupRefChanged.php │ │ │ ├── TestActionRemoved.php │ │ │ ├── TestActionSequenceChanged.php │ │ │ ├── TestActionTypeChanged.php │ │ │ ├── TestAdded.php │ │ │ ├── TestAnnotationAdded.php │ │ │ ├── TestAnnotationChanged.php │ │ │ ├── TestGroupRemoved.php │ │ │ ├── TestRemoveActionAdded.php │ │ │ ├── TestRemoveActionRemoved.php │ │ │ └── TestRemoved.php │ ├── PrimaryKeyAdd.php │ ├── PrimaryKeyChange.php │ ├── PrimaryKeyDrop.php │ ├── PropertyMoved.php │ ├── PropertyOverwriteAdded.php │ ├── SystemXml │ │ ├── DuplicateFieldAdded.php │ │ ├── FieldAdded.php │ │ ├── FieldRemoved.php │ │ ├── FileAdded.php │ │ ├── FileRemoved.php │ │ ├── GroupAdded.php │ │ ├── GroupRemoved.php │ │ ├── SectionAdded.php │ │ └── SectionRemoved.php │ ├── TableAdded.php │ ├── TableChangeResource.php │ ├── TableDropped.php │ ├── UniqueKeyAdd.php │ ├── UniqueKeyChange.php │ ├── UniqueKeyDrop.php │ ├── Visibility │ │ ├── ConstantDecreased.php │ │ ├── ConstantIncreased.php │ │ ├── ConstantOperation.php │ │ ├── MethodDecreased.php │ │ ├── MethodIncreased.php │ │ ├── MethodOperation.php │ │ ├── PropertyDecreased.php │ │ ├── PropertyIncreased.php │ │ └── PropertyOperation.php │ ├── VisibilityOperation.php │ ├── WhiteListReduced.php │ ├── WhiteListWasRemoved.php │ └── Xsd │ │ ├── AttributeRemoved.php │ │ ├── NodeRemoved.php │ │ ├── OptionalAttributeAdded.php │ │ ├── OptionalNodeAdded.php │ │ ├── RequiredAttributeAdded.php │ │ ├── RequiredNodeAdded.php │ │ ├── SchemaDeclarationAdded.php │ │ └── SchemaDeclarationRemoved.php ├── Parser │ └── LessParser.php ├── Registry │ ├── LessRegistry.php │ └── XmlRegistry.php ├── ReportBuilder.php ├── ReportTypes.php ├── Reporter │ ├── BreakingChangeTableReporter.php │ ├── HtmlDbSchemaReporter.php │ ├── HtmlPackageLevelChangesRenderer.php │ ├── HtmlTableRenderer.php │ ├── HtmlTargetDecorator.php │ └── TableReporter.php ├── Scanner │ ├── DbSchemaScanner.php │ ├── DiConfigScanner.php │ ├── EtSchema │ │ └── XmlConverter.php │ ├── EtSchemaScanner.php │ ├── LayoutConfigScanner.php │ ├── LessScanner.php │ ├── MftfScanner.php │ ├── ModuleNamespaceResolver.php │ ├── Scanner.php │ ├── ScannerInterface.php │ ├── ScannerRegistryFactory.php │ ├── SystemXmlScanner.php │ └── XsdScanner.php ├── ScannerRegistry.php ├── SemanticVersionChecker.php ├── Visitor │ ├── AbstractApiVisitor.php │ ├── ApiClassVisitor.php │ ├── ApiInterfaceVisitor.php │ ├── ApiTraitVisitor.php │ ├── NameResolver.php │ └── ParentConnector.php └── resources │ ├── application_excludes.txt │ ├── application_includes.txt │ ├── framework_excludes.txt │ ├── module_excludes.txt │ └── package_includes.txt └── var └── .gitignore /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/php.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/.github/workflows/php.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /.idea 3 | auth.json 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/COPYING.txt -------------------------------------------------------------------------------- /LICENSE-AFL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/LICENSE-AFL -------------------------------------------------------------------------------- /LICENSE-OSL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/LICENSE-OSL -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/README.md -------------------------------------------------------------------------------- /bin/svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/bin/svc -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/composer.lock -------------------------------------------------------------------------------- /dev/tests/Unit/ClassHierarchy/EntityTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/ClassHierarchy/EntityTest.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandApiClassesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandApiClassesTest.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandApiInterfacesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandApiInterfacesTest.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandApiTraitsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandApiTraitsTest.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandDatabaseSchemasTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandDatabaseSchemasTest.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandDiXmlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandDiXmlTest.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandLayoutTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandLayoutTest.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandLessTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandLessTest.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandMftfTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandMftfTest.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandNonApiClassesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandNonApiClassesTest.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandNonApiInterfacesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandNonApiInterfacesTest.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandNonApiTraitsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandNonApiTraitsTest.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandSystemXmlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandSystemXmlTest.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/AbstractHtmlTestCaseForHtml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/AbstractHtmlTestCaseForHtml.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/AbstractTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/AbstractTestCase.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/AbstractTestCaseWithRegExp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/AbstractTestCaseWithRegExp.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/HtmlParseInfoContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/HtmlParseInfoContainer.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/api-class/added-extends/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/api-class/added-extends/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/api-class/added-extends/TestClassBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/api-class/added-extends/TestClassBase.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/api-class/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/api-class/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/api-interface/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/api-interface/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/api-trait/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/api-trait/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/db_schema/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/db_schema/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/di_xml/change-name/Magento/TestModule/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/di_xml/change-name/Magento/TestModule/etc/di.xml -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/di_xml/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/di_xml/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/layout_xml/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/layout_xml/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/less/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/less/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/less/removed-import/Magento/TestModule/view/frontend/web/css/source/test.less: -------------------------------------------------------------------------------- 1 | // Exemplary import declaration 2 | -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/mftf/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/mftf/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/system_xml/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/system_xml/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/xsd-schema/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-after/xsd-schema/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/api-class/added-extends/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/api-class/added-extends/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/api-class/added-extends/TestClassBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/api-class/added-extends/TestClassBase.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/api-class/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/api-class/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/api-interface/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/api-interface/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/api-trait/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/api-trait/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/db_schema/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/db_schema/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/di_xml/change-name/Magento/TestModule/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/di_xml/change-name/Magento/TestModule/etc/di.xml -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/di_xml/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/di_xml/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/layout_xml/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/layout_xml/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/less/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/less/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/mftf/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/mftf/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/system_xml/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/system_xml/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/xsd-schema/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/all/source-code-before/xsd-schema/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-extends/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-extends/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-extends/source-code-after/TestClassBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-extends/source-code-after/TestClassBase.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-extends/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-extends/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-extends/source-code-before/TestClassBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-extends/source-code-before/TestClassBase.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-implements/source-code-after/TestClass1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-implements/source-code-after/TestClass1.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-implements/source-code-after/TestClass2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-implements/source-code-after/TestClass2.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-implements/source-code-after/TestInterface1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-implements/source-code-after/TestInterface1.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-implements/source-code-after/TestInterface2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-implements/source-code-after/TestInterface2.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-implements/source-code-before/TestClass1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-implements/source-code-before/TestClass1.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-implements/source-code-before/TestClass2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-implements/source-code-before/TestClass2.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-implements/source-code-before/TestInterface1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-implements/source-code-before/TestInterface1.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-implements/source-code-before/TestInterface2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-implements/source-code-before/TestInterface2.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-method-subclass-overwrite/source-code-after/ApiClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-method-subclass-overwrite/source-code-after/ApiClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-trait/source-code-after/TestClass1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-trait/source-code-after/TestClass1.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-trait/source-code-after/TestClass2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-trait/source-code-after/TestClass2.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-trait/source-code-after/TestTrait1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-trait/source-code-after/TestTrait1.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-trait/source-code-after/TestTrait2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-trait/source-code-after/TestTrait2.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-trait/source-code-before/TestClass1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-trait/source-code-before/TestClass1.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-trait/source-code-before/TestClass2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-trait/source-code-before/TestClass2.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-trait/source-code-before/TestTrait1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-trait/source-code-before/TestTrait1.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-trait/source-code-before/TestTrait2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/added-trait/source-code-before/TestTrait2.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/annotation-added/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/annotation-added/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/annotation-added/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/annotation-added/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/annotation-not-changed/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/annotation-not-changed/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/annotation-not-changed/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/annotation-not-changed/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/annotation-removed/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/annotation-removed/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/annotation-removed/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/annotation-removed/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/changed-method-parameter-type/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/changed-method-parameter-type/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/changed-method-parameter-type/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/changed-method-parameter-type/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/changed-method-return-type/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/changed-method-return-type/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/changed-method-return-type/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/changed-method-return-type/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/constant-added/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/constant-added/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/constant-added/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/constant-added/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/constant-removed/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/constant-removed/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/constant-removed/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/constant-removed/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/exception-subclass-added/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/exception-subclass-added/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/exception-subclass-added/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/exception-subclass-added/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/exception-subclassed/source-code-after/TestChildException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/exception-subclassed/source-code-after/TestChildException.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/exception-subclassed/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/exception-subclassed/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/exception-subclassed/source-code-after/TestParentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/exception-subclassed/source-code-after/TestParentException.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/exception-subclassed/source-code-before/TestChildException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/exception-subclassed/source-code-before/TestChildException.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/exception-subclassed/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/exception-subclassed/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/exception-superclass-added/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/exception-superclass-added/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/exception-superclass-added/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/exception-superclass-added/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/exception-superclassed/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/exception-superclassed/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/exception-superclassed/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/exception-superclassed/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/new-class/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/new-class/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/new-class/source-code-after/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/new-class/source-code-after/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/new-class/source-code-before/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/new-class/source-code-before/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/new-method-parameter-type/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/new-method-parameter-type/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/new-method-parameter-type/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/new-method-parameter-type/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/new-method/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/new-method/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/new-method/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/new-method/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/new-optional-method-parameter/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/new-optional-method-parameter/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/new-optional-method-parameter/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/new-optional-method-parameter/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/new-required-method-parameter/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/new-required-method-parameter/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/new-required-method-parameter/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/new-required-method-parameter/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/private-constant-added/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/private-constant-added/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/private-constant-added/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/private-constant-added/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/private-constant-remove/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/private-constant-remove/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/private-constant-remove/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/private-constant-remove/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/protected-property-overwrite/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/protected-property-overwrite/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/protected-property-overwrite/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/protected-property-overwrite/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/public-property-overwrite/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/public-property-overwrite/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/public-property-overwrite/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/public-property-overwrite/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/remove-extends/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/remove-extends/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/remove-extends/source-code-after/TestClassBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/remove-extends/source-code-after/TestClassBase.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/remove-extends/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/remove-extends/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/remove-extends/source-code-before/TestClassBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/remove-extends/source-code-before/TestClassBase.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/remove-implements/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/remove-implements/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/remove-implements/source-code-after/TestClassInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/remove-implements/source-code-after/TestClassInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/remove-implements/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/remove-implements/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/remove-implements/source-code-before/TestClassInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/remove-implements/source-code-before/TestClassInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/removed-class/source-code-after/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/removed-class/source-code-after/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/removed-class/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/removed-class/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/removed-class/source-code-before/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/removed-class/source-code-before/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/removed-method-parameter-type/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/removed-method-parameter-type/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/removed-method-parameter-type/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/removed-method-parameter-type/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/removed-method/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/removed-method/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/removed-method/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-class/removed-method/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/added-extends/source-code-after/TestInterface1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/added-extends/source-code-after/TestInterface1.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/added-extends/source-code-after/TestInterface2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/added-extends/source-code-after/TestInterface2.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/added-extends/source-code-after/TestInterface3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/added-extends/source-code-after/TestInterface3.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/added-extends/source-code-after/TestInterface4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/added-extends/source-code-after/TestInterface4.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/added-extends/source-code-before/TestInterface1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/added-extends/source-code-before/TestInterface1.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/added-extends/source-code-before/TestInterface2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/added-extends/source-code-before/TestInterface2.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/added-extends/source-code-before/TestInterface3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/added-extends/source-code-before/TestInterface3.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/added-extends/source-code-before/TestInterface4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/added-extends/source-code-before/TestInterface4.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/annotation-added/source-code-after/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/annotation-added/source-code-after/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/annotation-added/source-code-before/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/annotation-added/source-code-before/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/annotation-not-changed/source-code-after/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/annotation-not-changed/source-code-after/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/annotation-removed/source-code-after/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/annotation-removed/source-code-after/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/annotation-removed/source-code-before/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/annotation-removed/source-code-before/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/exception-subclassed/source-code-after/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/exception-subclassed/source-code-after/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/exception-subclassed/source-code-before/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/exception-subclassed/source-code-before/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/new-interface/source-code-after/TestAInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/new-interface/source-code-after/TestAInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/new-interface/source-code-after/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/new-interface/source-code-after/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/new-interface/source-code-before/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/new-interface/source-code-before/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/new-method/source-code-after/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/new-method/source-code-after/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/new-method/source-code-before/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/new-method/source-code-before/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/remove-extends/source-code-after/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/remove-extends/source-code-after/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/remove-extends/source-code-after/TestInterfaceBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/remove-extends/source-code-after/TestInterfaceBase.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/remove-extends/source-code-before/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/remove-extends/source-code-before/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/remove-extends/source-code-before/TestInterfaceBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/remove-extends/source-code-before/TestInterfaceBase.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/removed-interface/source-code-after/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/removed-interface/source-code-after/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/removed-interface/source-code-before/TestAInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/removed-interface/source-code-before/TestAInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/removed-interface/source-code-before/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/removed-interface/source-code-before/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/removed-method/source-code-after/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/removed-method/source-code-after/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/removed-method/source-code-before/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-interface/removed-method/source-code-before/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-trait/changed-method-return-type/source-code-after/TestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-trait/changed-method-return-type/source-code-after/TestTrait.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-trait/changed-method-return-type/source-code-before/TestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-trait/changed-method-return-type/source-code-before/TestTrait.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-trait/new-method-parameter-type/source-code-after/TestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-trait/new-method-parameter-type/source-code-after/TestTrait.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-trait/new-method-parameter-type/source-code-before/TestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-trait/new-method-parameter-type/source-code-before/TestTrait.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-trait/new-method/source-code-after/TestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-trait/new-method/source-code-after/TestTrait.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-trait/new-method/source-code-before/TestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-trait/new-method/source-code-before/TestTrait.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-trait/no-change/source-code-after/TestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-trait/no-change/source-code-after/TestTrait.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-trait/no-change/source-code-before/TestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-trait/no-change/source-code-before/TestTrait.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-trait/private-method-changed/source-code-after/TestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-trait/private-method-changed/source-code-after/TestTrait.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-trait/private-method-changed/source-code-before/TestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-trait/private-method-changed/source-code-before/TestTrait.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-trait/removed-method/source-code-after/TestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-trait/removed-method/source-code-after/TestTrait.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-trait/removed-method/source-code-before/TestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/api-trait/removed-method/source-code-before/TestTrait.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/application_includes.txt: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/di_xml/change-name/source-code-after/Magento/TestModule/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/di_xml/change-name/source-code-after/Magento/TestModule/etc/di.xml -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/di_xml/change-name/source-code-before/Magento/TestModule/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/di_xml/change-name/source-code-before/Magento/TestModule/etc/di.xml -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/di_xml/change-type/source-code-after/Magento/TestModule/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/di_xml/change-type/source-code-after/Magento/TestModule/etc/di.xml -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/di_xml/change-type/source-code-before/Magento/TestModule/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/di_xml/change-type/source-code-before/Magento/TestModule/etc/di.xml -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/di_xml/moved-to-app-etc/source-code-after/app/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/di_xml/moved-to-app-etc/source-code-after/app/etc/di.xml -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/di_xml/no-change/source-code-after/Magento/TestModule/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/di_xml/no-change/source-code-after/Magento/TestModule/etc/di.xml -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/di_xml/no-change/source-code-before/Magento/TestModule/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/di_xml/no-change/source-code-before/Magento/TestModule/etc/di.xml -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/di_xml/remove-type/source-code-after/Magento/TestModule/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/di_xml/remove-type/source-code-after/Magento/TestModule/etc/di.xml -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/di_xml/remove-type/source-code-before/Magento/TestModule/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/di_xml/remove-type/source-code-before/Magento/TestModule/etc/di.xml -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/less/removed-import/source-code-after/Magento/TestModule/view/frontend/web/css/source/test.less: -------------------------------------------------------------------------------- 1 | // Exemplary import declaration -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/less/removed-imports/source-code-after/Magento/TestModule/view/frontend/web/css/source/test.less: -------------------------------------------------------------------------------- 1 | // Exemplary import declaration -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/less/removed-mixins/source-code-after/Magento/TestModule/view/frontend/web/css/source/test.less: -------------------------------------------------------------------------------- 1 | // Exemplary mixin declaration -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/less/removed-variable/source-code-after/Magento/TestModule/view/frontend/web/css/source/test.less: -------------------------------------------------------------------------------- 1 | // Exemplary variable declaration 2 | @line-height__standard: 1.0; -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/less/removed-variables/source-code-after/Magento/TestModule/view/frontend/web/css/source/test.less: -------------------------------------------------------------------------------- 1 | // Exemplary variable declaration -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/exception-subclassed/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/exception-subclassed/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/exception-subclassed/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/exception-subclassed/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/exception-superclassed/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/exception-superclassed/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/exception-superclassed/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/exception-superclassed/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/new-class/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/new-class/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/new-class/source-code-after/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/new-class/source-code-after/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/new-class/source-code-before/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/new-class/source-code-before/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/new-method/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/new-method/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/new-method/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/new-method/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/removed-class/source-code-after/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/removed-class/source-code-after/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/removed-class/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/removed-class/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/removed-class/source-code-before/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/removed-class/source-code-before/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/removed-method/source-code-after/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/removed-method/source-code-after/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/removed-method/source-code-before/TestClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-class/removed-method/source-code-before/TestClass.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-interface/new-interface/source-code-after/TestAInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-interface/new-interface/source-code-after/TestAInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-interface/new-interface/source-code-after/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-interface/new-interface/source-code-after/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-interface/new-interface/source-code-before/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-interface/new-interface/source-code-before/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-interface/new-method/source-code-after/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-interface/new-method/source-code-after/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-interface/new-method/source-code-before/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-interface/new-method/source-code-before/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-interface/removed-method/source-code-after/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-interface/removed-method/source-code-after/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-interface/removed-method/source-code-before/TestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-interface/removed-method/source-code-before/TestInterface.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-trait/new-method/source-code-after/TestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-trait/new-method/source-code-after/TestTrait.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-trait/new-method/source-code-before/TestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-trait/new-method/source-code-before/TestTrait.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-trait/no-change/source-code-after/TestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-trait/no-change/source-code-after/TestTrait.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-trait/no-change/source-code-before/TestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-trait/no-change/source-code-before/TestTrait.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-trait/private-method-changed/source-code-after/TestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-trait/private-method-changed/source-code-after/TestTrait.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-trait/private-method-changed/source-code-before/TestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-trait/private-method-changed/source-code-before/TestTrait.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-trait/removed-method/source-code-after/TestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-trait/removed-method/source-code-after/TestTrait.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-trait/removed-method/source-code-before/TestTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/non-api-trait/removed-method/source-code-before/TestTrait.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/system_xml/file-added/source-code-before/Magento/TestModule/etc/adminhtml/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/system_xml/file-removed/source-code-after/Magento/TestModule/etc/adminhtml/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/xsd-schema/module-added/source-code-before/Magento/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/xsd-schema/module-removed/source-code-after/Magento/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/xsd-schema/schema-declaration-added/source-code-before/Magento/TestModule/etc/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandTest/_files/xsd-schema/schema-declaration-removed/source-code-after/Magento/TestModule/etc/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/CompareSourceCommandXsdSchemasTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/CompareSourceCommandXsdSchemasTest.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/HierarchyTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/HierarchyTest.php -------------------------------------------------------------------------------- /dev/tests/Unit/Console/Command/HtmlTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Console/Command/HtmlTest.php -------------------------------------------------------------------------------- /dev/tests/Unit/FileChangeDetectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/FileChangeDetectorTest.php -------------------------------------------------------------------------------- /dev/tests/Unit/FileChangeDetectorTest/_files/after/added_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/FileChangeDetectorTest/_files/after/added_file.txt -------------------------------------------------------------------------------- /dev/tests/Unit/FileChangeDetectorTest/_files/after/changed_json_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/FileChangeDetectorTest/_files/after/changed_json_file.json -------------------------------------------------------------------------------- /dev/tests/Unit/FileChangeDetectorTest/_files/after/changed_text_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/FileChangeDetectorTest/_files/after/changed_text_file.txt -------------------------------------------------------------------------------- /dev/tests/Unit/FileChangeDetectorTest/_files/after/identical_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/FileChangeDetectorTest/_files/after/identical_file.txt -------------------------------------------------------------------------------- /dev/tests/Unit/FileChangeDetectorTest/_files/before/changed_json_file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/FileChangeDetectorTest/_files/before/changed_json_file.json -------------------------------------------------------------------------------- /dev/tests/Unit/FileChangeDetectorTest/_files/before/changed_text_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/FileChangeDetectorTest/_files/before/changed_text_file.txt -------------------------------------------------------------------------------- /dev/tests/Unit/FileChangeDetectorTest/_files/before/identical_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/FileChangeDetectorTest/_files/before/identical_file.txt -------------------------------------------------------------------------------- /dev/tests/Unit/FileChangeDetectorTest/_files/before/removed_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/FileChangeDetectorTest/_files/before/removed_file.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/filtered_changes_remain/expected/after/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/filtered_changes_remain/expected/after/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/filtered_changes_remain/expected/before/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/filtered_changes_remain/expected/before/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/filtered_changes_remain/input/after/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/filtered_changes_remain/input/after/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/filtered_changes_remain/input/before/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/filtered_changes_remain/input/before/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/ignore_non_composer_file/expected/after/non_composer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/ignore_non_composer_file/expected/after/non_composer.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/ignore_non_composer_file/expected/before/non_composer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/ignore_non_composer_file/expected/before/non_composer.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/ignore_non_composer_file/input/after/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/ignore_non_composer_file/input/after/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/ignore_non_composer_file/input/after/non_composer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/ignore_non_composer_file/input/after/non_composer.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/ignore_non_composer_file/input/before/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/ignore_non_composer_file/input/before/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/ignore_non_composer_file/input/before/non_composer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/ignore_non_composer_file/input/before/non_composer.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/new_composer_file/expected/after/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/new_composer_file/expected/after/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/new_composer_file/expected/after/non_composer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/new_composer_file/expected/after/non_composer.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/new_composer_file/expected/before/non_composer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/new_composer_file/expected/before/non_composer.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/new_composer_file/input/after/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/new_composer_file/input/after/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/new_composer_file/input/after/non_composer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/new_composer_file/input/after/non_composer.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/new_composer_file/input/before/non_composer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/new_composer_file/input/before/non_composer.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/package_version_name_matches/input/after/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/package_version_name_matches/input/after/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/package_version_name_matches/input/before/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/package_version_name_matches/input/before/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/package_version_no_name_match/input/after/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/package_version_no_name_match/input/after/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/package_version_no_name_match/input/before/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/package_version_no_name_match/input/before/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/removed_composer_file/expected/after/non_composer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/removed_composer_file/expected/after/non_composer.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/removed_composer_file/expected/before/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/removed_composer_file/expected/before/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/removed_composer_file/expected/before/non_composer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/removed_composer_file/expected/before/non_composer.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/removed_composer_file/input/after/non_composer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/removed_composer_file/input/after/non_composer.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/removed_composer_file/input/before/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/removed_composer_file/input/before/composer.json -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/removed_composer_file/input/before/non_composer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/ComposerVersionFilterTest/_files/removed_composer_file/input/before/non_composer.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/ignore_non_php_file/expected/after/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/ignore_non_php_file/expected/after/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/ignore_non_php_file/expected/before/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/ignore_non_php_file/expected/before/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/ignore_non_php_file/input/after/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/ignore_non_php_file/input/after/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/ignore_non_php_file/input/before/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/ignore_non_php_file/input/before/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/new_php_file/expected/after/AddedPhpFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/new_php_file/expected/after/AddedPhpFile.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/new_php_file/expected/after/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/new_php_file/expected/after/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/new_php_file/expected/before/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/new_php_file/expected/before/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/new_php_file/input/after/AddedPhpFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/new_php_file/input/after/AddedPhpFile.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/new_php_file/input/after/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/new_php_file/input/after/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/new_php_file/input/before/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/new_php_file/input/before/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/removed_php_file/expected/after/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/removed_php_file/expected/after/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/removed_php_file/expected/before/RemovedPhpFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/removed_php_file/expected/before/RemovedPhpFile.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/removed_php_file/expected/before/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/removed_php_file/expected/before/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/removed_php_file/input/after/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/removed_php_file/input/after/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/removed_php_file/input/before/RemovedPhpFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/removed_php_file/input/before/RemovedPhpFile.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/removed_php_file/input/before/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpCommentFormattingFilterTest/_files/removed_php_file/input/before/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/added_ignored_tags/input/after/AddedIgnoredTags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/added_ignored_tags/input/after/AddedIgnoredTags.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/added_ignored_tags/input/before/AddedIgnoredTags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/added_ignored_tags/input/before/AddedIgnoredTags.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/added_non_ignored_tags/input/after/AddedNonIgnoredTags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/added_non_ignored_tags/input/after/AddedNonIgnoredTags.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/added_non_ignored_tags/input/before/AddedNonIgnoredTags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/added_non_ignored_tags/input/before/AddedNonIgnoredTags.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/case_sensitive/expected/after/CaseSensitive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/case_sensitive/expected/after/CaseSensitive.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/case_sensitive/expected/before/CaseSensitive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/case_sensitive/expected/before/CaseSensitive.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/case_sensitive/input/after/CaseSensitive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/case_sensitive/input/after/CaseSensitive.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/case_sensitive/input/before/CaseSensitive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/case_sensitive/input/before/CaseSensitive.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/ignore_case/input/after/IgnoreCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/ignore_case/input/after/IgnoreCase.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/ignore_case/input/before/IgnoreCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/ignore_case/input/before/IgnoreCase.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/ignore_non_php_file/expected/after/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/ignore_non_php_file/expected/after/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/ignore_non_php_file/expected/before/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/ignore_non_php_file/expected/before/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/ignore_non_php_file/input/after/FilterPhpFilesOnly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/ignore_non_php_file/input/after/FilterPhpFilesOnly.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/ignore_non_php_file/input/after/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/ignore_non_php_file/input/after/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/ignore_non_php_file/input/before/FilterPhpFilesOnly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/ignore_non_php_file/input/before/FilterPhpFilesOnly.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/ignore_non_php_file/input/before/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/ignore_non_php_file/input/before/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/multiple_ignored_tags/input/after/MultipleIgnoredTags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/multiple_ignored_tags/input/after/MultipleIgnoredTags.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/multiple_ignored_tags/input/before/MultipleIgnoredTags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/multiple_ignored_tags/input/before/MultipleIgnoredTags.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/new_php_file/expected/after/AddedPhpFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/new_php_file/expected/after/AddedPhpFile.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/new_php_file/expected/after/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/new_php_file/expected/after/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/new_php_file/expected/before/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/new_php_file/expected/before/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/new_php_file/input/after/AddedPhpFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/new_php_file/input/after/AddedPhpFile.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/new_php_file/input/after/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/new_php_file/input/after/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/new_php_file/input/before/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/new_php_file/input/before/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/removed_ignored_tags/input/after/RemovedIgnoredTags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/removed_ignored_tags/input/after/RemovedIgnoredTags.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/removed_ignored_tags/input/before/RemovedIgnoredTags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/removed_ignored_tags/input/before/RemovedIgnoredTags.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/removed_php_file/expected/after/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/removed_php_file/expected/after/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/removed_php_file/expected/before/RemovedPhpFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/removed_php_file/expected/before/RemovedPhpFile.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/removed_php_file/expected/before/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/removed_php_file/expected/before/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/removed_php_file/input/after/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/removed_php_file/input/after/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/removed_php_file/input/before/RemovedPhpFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/removed_php_file/input/before/RemovedPhpFile.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/removed_php_file/input/before/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpIgnoredTagFilterTest/_files/removed_php_file/input/before/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/ignore_non_php_file/expected/after/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/ignore_non_php_file/expected/after/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/ignore_non_php_file/expected/before/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/ignore_non_php_file/expected/before/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/ignore_non_php_file/input/after/FilterPhpFilesOnly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/ignore_non_php_file/input/after/FilterPhpFilesOnly.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/ignore_non_php_file/input/after/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/ignore_non_php_file/input/after/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/ignore_non_php_file/input/before/FilterPhpFilesOnly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/ignore_non_php_file/input/before/FilterPhpFilesOnly.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/ignore_non_php_file/input/before/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/ignore_non_php_file/input/before/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/new_php_file/expected/after/AddedPhpFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/new_php_file/expected/after/AddedPhpFile.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/new_php_file/expected/after/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/new_php_file/expected/after/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/new_php_file/expected/before/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/new_php_file/expected/before/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/new_php_file/input/after/AddedPhpFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/new_php_file/input/after/AddedPhpFile.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/new_php_file/input/after/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/new_php_file/input/after/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/new_php_file/input/before/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/new_php_file/input/before/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/removed_php_file/expected/after/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/removed_php_file/expected/after/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/removed_php_file/expected/before/RemovedPhpFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/removed_php_file/expected/before/RemovedPhpFile.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/removed_php_file/expected/before/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/removed_php_file/expected/before/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/removed_php_file/input/after/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/removed_php_file/input/after/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/removed_php_file/input/before/RemovedPhpFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/removed_php_file/input/before/RemovedPhpFile.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/removed_php_file/input/before/non_php.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/removed_php_file/input/before/non_php.txt -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/trimmed_spaces_match/input/after/TrimmedSpacesMatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/trimmed_spaces_match/input/after/TrimmedSpacesMatch.php -------------------------------------------------------------------------------- /dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/trimmed_spaces_match/input/before/TrimmedSpacesMatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Filter/AllowedChangeFilter/PhpWhitespaceFilterTest/_files/trimmed_spaces_match/input/before/TrimmedSpacesMatch.php -------------------------------------------------------------------------------- /dev/tests/Unit/Helper/ClassParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Helper/ClassParserTest.php -------------------------------------------------------------------------------- /dev/tests/Unit/Helper/_files/ClassA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Helper/_files/ClassA.php -------------------------------------------------------------------------------- /dev/tests/Unit/Helper/_files/ClassExtendAlias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Helper/_files/ClassExtendAlias.php -------------------------------------------------------------------------------- /dev/tests/Unit/Helper/_files/ClassExtendFull.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Helper/_files/ClassExtendFull.php -------------------------------------------------------------------------------- /dev/tests/Unit/Helper/_files/InterfaceA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Helper/_files/InterfaceA.php -------------------------------------------------------------------------------- /dev/tests/Unit/MergedReportTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/MergedReportTest.php -------------------------------------------------------------------------------- /dev/tests/Unit/Reporter/HtmlTargetDecoratorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/Reporter/HtmlTargetDecoratorTest.php -------------------------------------------------------------------------------- /dev/tests/Unit/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/bootstrap.php -------------------------------------------------------------------------------- /dev/tests/Unit/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/phpunit.xml.dist -------------------------------------------------------------------------------- /dev/tests/Unit/tmp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/dev/tests/Unit/tmp/.gitignore -------------------------------------------------------------------------------- /src/Analyzer/AbstractCodeAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/AbstractCodeAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/Analyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/Analyzer.php -------------------------------------------------------------------------------- /src/Analyzer/AnalyzerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/AnalyzerInterface.php -------------------------------------------------------------------------------- /src/Analyzer/ApiClassAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/ApiClassAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/ApiInterfaceAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/ApiInterfaceAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/ClassAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/ClassAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/ClassConstantAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/ClassConstantAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/ClassExtendsAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/ClassExtendsAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/ClassImplementsAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/ClassImplementsAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/ClassLikeApiAnnotationAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/ClassLikeApiAnnotationAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/ClassMethodAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/ClassMethodAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/ClassMethodExceptionAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/ClassMethodExceptionAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/ClassTraitAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/ClassTraitAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/DBSchema/DbSchemaColumnAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/DBSchema/DbSchemaColumnAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/DBSchema/DbSchemaForeignKeyAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/DBSchema/DbSchemaForeignKeyAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/DBSchema/DbSchemaPrimaryKeyAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/DBSchema/DbSchemaPrimaryKeyAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/DBSchema/DbSchemaTableAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/DBSchema/DbSchemaTableAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/DBSchema/DbSchemaUniqueKeyAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/DBSchema/DbSchemaUniqueKeyAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/DBSchema/DbSchemaWhitelistAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/DBSchema/DbSchemaWhitelistAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/DBSchema/DbSchemaWhitelistReductionOrRemovalAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/DBSchema/DbSchemaWhitelistReductionOrRemovalAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/DbSchemaAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/DbSchemaAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/DiXml/VirtualTypeAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/DiXml/VirtualTypeAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/EtSchemaAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/EtSchemaAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/Factory/AnalyzerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/Factory/AnalyzerFactory.php -------------------------------------------------------------------------------- /src/Analyzer/Factory/AnalyzerFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/Factory/AnalyzerFactoryInterface.php -------------------------------------------------------------------------------- /src/Analyzer/Factory/DbSchemaAnalyzerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/Factory/DbSchemaAnalyzerFactory.php -------------------------------------------------------------------------------- /src/Analyzer/Factory/DiAnalyzerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/Factory/DiAnalyzerFactory.php -------------------------------------------------------------------------------- /src/Analyzer/Factory/EtSchemaAnalyzerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/Factory/EtSchemaAnalyzerFactory.php -------------------------------------------------------------------------------- /src/Analyzer/Factory/LayoutAnalyzerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/Factory/LayoutAnalyzerFactory.php -------------------------------------------------------------------------------- /src/Analyzer/Factory/LessAnalyzerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/Factory/LessAnalyzerFactory.php -------------------------------------------------------------------------------- /src/Analyzer/Factory/MftfAnalyzerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/Factory/MftfAnalyzerFactory.php -------------------------------------------------------------------------------- /src/Analyzer/Factory/NonApiAnalyzerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/Factory/NonApiAnalyzerFactory.php -------------------------------------------------------------------------------- /src/Analyzer/Factory/SystemXmlAnalyzerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/Factory/SystemXmlAnalyzerFactory.php -------------------------------------------------------------------------------- /src/Analyzer/Factory/XsdAnalyzerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/Factory/XsdAnalyzerFactory.php -------------------------------------------------------------------------------- /src/Analyzer/InterfaceAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/InterfaceAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/InterfaceExtendsAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/InterfaceExtendsAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/Layout/Analyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/Layout/Analyzer.php -------------------------------------------------------------------------------- /src/Analyzer/Less/Analyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/Less/Analyzer.php -------------------------------------------------------------------------------- /src/Analyzer/MethodDocBlockAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/MethodDocBlockAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/Mftf/AbstractEntityAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/Mftf/AbstractEntityAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/Mftf/ActionGroupAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/Mftf/ActionGroupAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/Mftf/DataAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/Mftf/DataAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/Mftf/MetadataAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/Mftf/MetadataAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/Mftf/PageAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/Mftf/PageAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/Mftf/SectionAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/Mftf/SectionAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/Mftf/SuiteAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/Mftf/SuiteAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/Mftf/TestAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/Mftf/TestAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/NonApiAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/NonApiAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/PropertyAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/PropertyAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/SystemXml/Analyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/SystemXml/Analyzer.php -------------------------------------------------------------------------------- /src/Analyzer/TraitAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/TraitAnalyzer.php -------------------------------------------------------------------------------- /src/Analyzer/Xsd/Analyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Analyzer/Xsd/Analyzer.php -------------------------------------------------------------------------------- /src/ClassHierarchy/DependencyGraph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/ClassHierarchy/DependencyGraph.php -------------------------------------------------------------------------------- /src/ClassHierarchy/DependencyInspectionVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/ClassHierarchy/DependencyInspectionVisitor.php -------------------------------------------------------------------------------- /src/ClassHierarchy/Entity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/ClassHierarchy/Entity.php -------------------------------------------------------------------------------- /src/ClassHierarchy/EntityFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/ClassHierarchy/EntityFactory.php -------------------------------------------------------------------------------- /src/ClassHierarchy/StaticAnalyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/ClassHierarchy/StaticAnalyzer.php -------------------------------------------------------------------------------- /src/ClassHierarchy/StaticAnalyzerFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/ClassHierarchy/StaticAnalyzerFactory.php -------------------------------------------------------------------------------- /src/Comparator/Signature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Comparator/Signature.php -------------------------------------------------------------------------------- /src/Comparator/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Comparator/Type.php -------------------------------------------------------------------------------- /src/Comparator/Visibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Comparator/Visibility.php -------------------------------------------------------------------------------- /src/Console/Command/CompareSourceCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Console/Command/CompareSourceCommand.php -------------------------------------------------------------------------------- /src/Console/Command/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Console/Command/css/bootstrap.min.css -------------------------------------------------------------------------------- /src/DbSchemaReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/DbSchemaReport.php -------------------------------------------------------------------------------- /src/DbSchemaReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/DbSchemaReporter.php -------------------------------------------------------------------------------- /src/FileChangeDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/FileChangeDetector.php -------------------------------------------------------------------------------- /src/Filter/AllowedChangeFilter/ChangedFileFilterInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Filter/AllowedChangeFilter/ChangedFileFilterInterface.php -------------------------------------------------------------------------------- /src/Filter/AllowedChangeFilter/ComposerVersionFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Filter/AllowedChangeFilter/ComposerVersionFilter.php -------------------------------------------------------------------------------- /src/Filter/AllowedChangeFilter/PhpCommentFormattingFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Filter/AllowedChangeFilter/PhpCommentFormattingFilter.php -------------------------------------------------------------------------------- /src/Filter/AllowedChangeFilter/PhpIgnoredTagFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Filter/AllowedChangeFilter/PhpIgnoredTagFilter.php -------------------------------------------------------------------------------- /src/Filter/AllowedChangeFilter/PhpWhitespaceFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Filter/AllowedChangeFilter/PhpWhitespaceFilter.php -------------------------------------------------------------------------------- /src/Filter/FilePatternFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Filter/FilePatternFilter.php -------------------------------------------------------------------------------- /src/Filter/SourceFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Filter/SourceFilter.php -------------------------------------------------------------------------------- /src/Filter/SourceWithJsonFilter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Filter/SourceWithJsonFilter.php -------------------------------------------------------------------------------- /src/Finder/DbSchemaFinderDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Finder/DbSchemaFinderDecorator.php -------------------------------------------------------------------------------- /src/Finder/FinderDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Finder/FinderDecorator.php -------------------------------------------------------------------------------- /src/Finder/FinderDecoratorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Finder/FinderDecoratorFactory.php -------------------------------------------------------------------------------- /src/Glob.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Glob.php -------------------------------------------------------------------------------- /src/Helper/ClassParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Helper/ClassParser.php -------------------------------------------------------------------------------- /src/Helper/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Helper/Node.php -------------------------------------------------------------------------------- /src/Helper/PackageNameResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Helper/PackageNameResolver.php -------------------------------------------------------------------------------- /src/InjectableReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/InjectableReport.php -------------------------------------------------------------------------------- /src/MergedReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/MergedReport.php -------------------------------------------------------------------------------- /src/MftfReport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/MftfReport.php -------------------------------------------------------------------------------- /src/Node/Layout/Block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Node/Layout/Block.php -------------------------------------------------------------------------------- /src/Node/Layout/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Node/Layout/Container.php -------------------------------------------------------------------------------- /src/Node/Layout/LayoutNodeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Node/Layout/LayoutNodeInterface.php -------------------------------------------------------------------------------- /src/Node/Layout/Update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Node/Layout/Update.php -------------------------------------------------------------------------------- /src/Node/Statement/ClassConstant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Node/Statement/ClassConstant.php -------------------------------------------------------------------------------- /src/Node/SystemXml/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Node/SystemXml/Field.php -------------------------------------------------------------------------------- /src/Node/SystemXml/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Node/SystemXml/Group.php -------------------------------------------------------------------------------- /src/Node/SystemXml/NodeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Node/SystemXml/NodeInterface.php -------------------------------------------------------------------------------- /src/Node/SystemXml/Section.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Node/SystemXml/Section.php -------------------------------------------------------------------------------- /src/Node/VirtualType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Node/VirtualType.php -------------------------------------------------------------------------------- /src/Node/Xsd/AttributeNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Node/Xsd/AttributeNode.php -------------------------------------------------------------------------------- /src/Node/Xsd/ElementNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Node/Xsd/ElementNode.php -------------------------------------------------------------------------------- /src/Node/Xsd/NodeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Node/Xsd/NodeInterface.php -------------------------------------------------------------------------------- /src/Operation/AbstractOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/AbstractOperation.php -------------------------------------------------------------------------------- /src/Operation/ClassConstantAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ClassConstantAdded.php -------------------------------------------------------------------------------- /src/Operation/ClassConstantMoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ClassConstantMoved.php -------------------------------------------------------------------------------- /src/Operation/ClassConstantOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ClassConstantOperation.php -------------------------------------------------------------------------------- /src/Operation/ClassConstantRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ClassConstantRemoved.php -------------------------------------------------------------------------------- /src/Operation/ClassConstructorLastParameterRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ClassConstructorLastParameterRemoved.php -------------------------------------------------------------------------------- /src/Operation/ClassConstructorObjectParameterAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ClassConstructorObjectParameterAdded.php -------------------------------------------------------------------------------- /src/Operation/ClassConstructorOptionalParameterAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ClassConstructorOptionalParameterAdded.php -------------------------------------------------------------------------------- /src/Operation/ClassExtendsAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ClassExtendsAdded.php -------------------------------------------------------------------------------- /src/Operation/ClassExtendsRemove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ClassExtendsRemove.php -------------------------------------------------------------------------------- /src/Operation/ClassImplementsAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ClassImplementsAdded.php -------------------------------------------------------------------------------- /src/Operation/ClassImplementsRemove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ClassImplementsRemove.php -------------------------------------------------------------------------------- /src/Operation/ClassLikeApiAnnotationAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ClassLikeApiAnnotationAdded.php -------------------------------------------------------------------------------- /src/Operation/ClassLikeApiAnnotationOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ClassLikeApiAnnotationOperation.php -------------------------------------------------------------------------------- /src/Operation/ClassLikeApiAnnotationRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ClassLikeApiAnnotationRemoved.php -------------------------------------------------------------------------------- /src/Operation/ClassMethodLastParameterRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ClassMethodLastParameterRemoved.php -------------------------------------------------------------------------------- /src/Operation/ClassMethodMoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ClassMethodMoved.php -------------------------------------------------------------------------------- /src/Operation/ClassMethodOptionalParameterAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ClassMethodOptionalParameterAdded.php -------------------------------------------------------------------------------- /src/Operation/ClassMethodOverwriteAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ClassMethodOverwriteAdded.php -------------------------------------------------------------------------------- /src/Operation/ClassMethodOverwriteRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ClassMethodOverwriteRemoved.php -------------------------------------------------------------------------------- /src/Operation/ClassMethodParameterTypingChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ClassMethodParameterTypingChanged.php -------------------------------------------------------------------------------- /src/Operation/ClassMethodParameterTypingChangedNullable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ClassMethodParameterTypingChangedNullable.php -------------------------------------------------------------------------------- /src/Operation/ClassMethodReturnTypingChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ClassMethodReturnTypingChanged.php -------------------------------------------------------------------------------- /src/Operation/ClassTraitAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ClassTraitAdded.php -------------------------------------------------------------------------------- /src/Operation/ColumnAdd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ColumnAdd.php -------------------------------------------------------------------------------- /src/Operation/ColumnRemove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ColumnRemove.php -------------------------------------------------------------------------------- /src/Operation/DiXml/VirtualTypeChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/DiXml/VirtualTypeChanged.php -------------------------------------------------------------------------------- /src/Operation/DiXml/VirtualTypeRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/DiXml/VirtualTypeRemoved.php -------------------------------------------------------------------------------- /src/Operation/DiXml/VirtualTypeToTypeChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/DiXml/VirtualTypeToTypeChanged.php -------------------------------------------------------------------------------- /src/Operation/DocblockAnnotations/ClassMethodParameterTypeMovedFromDocToInline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/DocblockAnnotations/ClassMethodParameterTypeMovedFromDocToInline.php -------------------------------------------------------------------------------- /src/Operation/DocblockAnnotations/ClassMethodParameterTypeMovedFromInlineToDoc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/DocblockAnnotations/ClassMethodParameterTypeMovedFromInlineToDoc.php -------------------------------------------------------------------------------- /src/Operation/DocblockAnnotations/ClassMethodReturnTypeMovedFromDocToInline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/DocblockAnnotations/ClassMethodReturnTypeMovedFromDocToInline.php -------------------------------------------------------------------------------- /src/Operation/DocblockAnnotations/ClassMethodReturnTypeMovedFromInlineToDoc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/DocblockAnnotations/ClassMethodReturnTypeMovedFromInlineToDoc.php -------------------------------------------------------------------------------- /src/Operation/DocblockAnnotations/ClassMethodVariableTypeMovedFromDocToInline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/DocblockAnnotations/ClassMethodVariableTypeMovedFromDocToInline.php -------------------------------------------------------------------------------- /src/Operation/DocblockAnnotations/ClassMethodVariableTypeMovedFromInlineToDoc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/DocblockAnnotations/ClassMethodVariableTypeMovedFromInlineToDoc.php -------------------------------------------------------------------------------- /src/Operation/DropForeignKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/DropForeignKey.php -------------------------------------------------------------------------------- /src/Operation/DropKey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/DropKey.php -------------------------------------------------------------------------------- /src/Operation/EtSchema/EtSchemaOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/EtSchema/EtSchemaOperation.php -------------------------------------------------------------------------------- /src/Operation/ExceptionSubclassed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ExceptionSubclassed.php -------------------------------------------------------------------------------- /src/Operation/ExceptionSuperclassAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ExceptionSuperclassAdded.php -------------------------------------------------------------------------------- /src/Operation/ExceptionSuperclassed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ExceptionSuperclassed.php -------------------------------------------------------------------------------- /src/Operation/ExtendableClassConstructorOptionalParameterAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ExtendableClassConstructorOptionalParameterAdded.php -------------------------------------------------------------------------------- /src/Operation/ForeignKeyAdd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ForeignKeyAdd.php -------------------------------------------------------------------------------- /src/Operation/ForeignKeyChange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ForeignKeyChange.php -------------------------------------------------------------------------------- /src/Operation/ForeignKeyDrop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/ForeignKeyDrop.php -------------------------------------------------------------------------------- /src/Operation/InterfaceExtendsAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/InterfaceExtendsAdded.php -------------------------------------------------------------------------------- /src/Operation/InterfaceExtendsRemove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/InterfaceExtendsRemove.php -------------------------------------------------------------------------------- /src/Operation/InvalidWhitelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/InvalidWhitelist.php -------------------------------------------------------------------------------- /src/Operation/Layout/BlockRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Layout/BlockRemoved.php -------------------------------------------------------------------------------- /src/Operation/Layout/ContainerRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Layout/ContainerRemoved.php -------------------------------------------------------------------------------- /src/Operation/Layout/UpdateRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Layout/UpdateRemoved.php -------------------------------------------------------------------------------- /src/Operation/Less/ImportRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Less/ImportRemoved.php -------------------------------------------------------------------------------- /src/Operation/Less/MixinParameterAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Less/MixinParameterAdded.php -------------------------------------------------------------------------------- /src/Operation/Less/MixinRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Less/MixinRemoved.php -------------------------------------------------------------------------------- /src/Operation/Less/VariableRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Less/VariableRemoved.php -------------------------------------------------------------------------------- /src/Operation/Mftf/ActionGroup/ActionGroupActionAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/ActionGroup/ActionGroupActionAdded.php -------------------------------------------------------------------------------- /src/Operation/Mftf/ActionGroup/ActionGroupActionChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/ActionGroup/ActionGroupActionChanged.php -------------------------------------------------------------------------------- /src/Operation/Mftf/ActionGroup/ActionGroupActionRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/ActionGroup/ActionGroupActionRemoved.php -------------------------------------------------------------------------------- /src/Operation/Mftf/ActionGroup/ActionGroupActionTypeChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/ActionGroup/ActionGroupActionTypeChanged.php -------------------------------------------------------------------------------- /src/Operation/Mftf/ActionGroup/ActionGroupAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/ActionGroup/ActionGroupAdded.php -------------------------------------------------------------------------------- /src/Operation/Mftf/ActionGroup/ActionGroupArgumentAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/ActionGroup/ActionGroupArgumentAdded.php -------------------------------------------------------------------------------- /src/Operation/Mftf/ActionGroup/ActionGroupArgumentChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/ActionGroup/ActionGroupArgumentChanged.php -------------------------------------------------------------------------------- /src/Operation/Mftf/ActionGroup/ActionGroupArgumentRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/ActionGroup/ActionGroupArgumentRemoved.php -------------------------------------------------------------------------------- /src/Operation/Mftf/ActionGroup/ActionGroupRemoveActionAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/ActionGroup/ActionGroupRemoveActionAdded.php -------------------------------------------------------------------------------- /src/Operation/Mftf/ActionGroup/ActionGroupRemoveActionRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/ActionGroup/ActionGroupRemoveActionRemoved.php -------------------------------------------------------------------------------- /src/Operation/Mftf/ActionGroup/ActionGroupRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/ActionGroup/ActionGroupRemoved.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Data/DataEntityAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Data/DataEntityAdded.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Data/DataEntityArrayAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Data/DataEntityArrayAdded.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Data/DataEntityArrayItemRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Data/DataEntityArrayItemRemoved.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Data/DataEntityArrayRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Data/DataEntityArrayRemoved.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Data/DataEntityFieldAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Data/DataEntityFieldAdded.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Data/DataEntityFieldRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Data/DataEntityFieldRemoved.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Data/DataEntityRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Data/DataEntityRemoved.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Data/DataEntityReqEntityAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Data/DataEntityReqEntityAdded.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Data/DataEntityReqEntityRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Data/DataEntityReqEntityRemoved.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Data/DataEntityVarAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Data/DataEntityVarAdded.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Data/DataEntityVarRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Data/DataEntityVarRemoved.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Metadata/MetadataAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Metadata/MetadataAdded.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Metadata/MetadataChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Metadata/MetadataChanged.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Metadata/MetadataChildAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Metadata/MetadataChildAdded.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Metadata/MetadataChildRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Metadata/MetadataChildRemoved.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Metadata/MetadataRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Metadata/MetadataRemoved.php -------------------------------------------------------------------------------- /src/Operation/Mftf/MftfOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/MftfOperation.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Page/PageAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Page/PageAdded.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Page/PageRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Page/PageRemoved.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Page/PageSectionAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Page/PageSectionAdded.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Page/PageSectionRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Page/PageSectionRemoved.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Section/SectionAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Section/SectionAdded.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Section/SectionElementAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Section/SectionElementAdded.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Section/SectionElementChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Section/SectionElementChanged.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Section/SectionElementParameterizedChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Section/SectionElementParameterizedChanged.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Section/SectionElementRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Section/SectionElementRemoved.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Section/SectionElementSelectorChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Section/SectionElementSelectorChanged.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Section/SectionElementTypeChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Section/SectionElementTypeChanged.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Section/SectionRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Section/SectionRemoved.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Suite/SuiteAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Suite/SuiteAdded.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Suite/SuiteBeforeAfterActionAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Suite/SuiteBeforeAfterActionAdded.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Suite/SuiteBeforeAfterActionChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Suite/SuiteBeforeAfterActionChanged.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Suite/SuiteBeforeAfterActionGroupRefChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Suite/SuiteBeforeAfterActionGroupRefChanged.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Suite/SuiteBeforeAfterActionRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Suite/SuiteBeforeAfterActionRemoved.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Suite/SuiteBeforeAfterActionSequenceChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Suite/SuiteBeforeAfterActionSequenceChanged.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Suite/SuiteBeforeAfterActionTypeChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Suite/SuiteBeforeAfterActionTypeChanged.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Suite/SuiteBeforeAfterRemoveActionAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Suite/SuiteBeforeAfterRemoveActionAdded.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Suite/SuiteBeforeAfterRemoveActionRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Suite/SuiteBeforeAfterRemoveActionRemoved.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Suite/SuiteIncludeExcludeAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Suite/SuiteIncludeExcludeAdded.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Suite/SuiteIncludeExcludeRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Suite/SuiteIncludeExcludeRemoved.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Suite/SuiteRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Suite/SuiteRemoved.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Test/TestActionAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Test/TestActionAdded.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Test/TestActionChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Test/TestActionChanged.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Test/TestActionGroupRefChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Test/TestActionGroupRefChanged.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Test/TestActionRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Test/TestActionRemoved.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Test/TestActionSequenceChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Test/TestActionSequenceChanged.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Test/TestActionTypeChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Test/TestActionTypeChanged.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Test/TestAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Test/TestAdded.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Test/TestAnnotationAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Test/TestAnnotationAdded.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Test/TestAnnotationChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Test/TestAnnotationChanged.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Test/TestGroupRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Test/TestGroupRemoved.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Test/TestRemoveActionAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Test/TestRemoveActionAdded.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Test/TestRemoveActionRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Test/TestRemoveActionRemoved.php -------------------------------------------------------------------------------- /src/Operation/Mftf/Test/TestRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Mftf/Test/TestRemoved.php -------------------------------------------------------------------------------- /src/Operation/PrimaryKeyAdd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/PrimaryKeyAdd.php -------------------------------------------------------------------------------- /src/Operation/PrimaryKeyChange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/PrimaryKeyChange.php -------------------------------------------------------------------------------- /src/Operation/PrimaryKeyDrop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/PrimaryKeyDrop.php -------------------------------------------------------------------------------- /src/Operation/PropertyMoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/PropertyMoved.php -------------------------------------------------------------------------------- /src/Operation/PropertyOverwriteAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/PropertyOverwriteAdded.php -------------------------------------------------------------------------------- /src/Operation/SystemXml/DuplicateFieldAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/SystemXml/DuplicateFieldAdded.php -------------------------------------------------------------------------------- /src/Operation/SystemXml/FieldAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/SystemXml/FieldAdded.php -------------------------------------------------------------------------------- /src/Operation/SystemXml/FieldRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/SystemXml/FieldRemoved.php -------------------------------------------------------------------------------- /src/Operation/SystemXml/FileAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/SystemXml/FileAdded.php -------------------------------------------------------------------------------- /src/Operation/SystemXml/FileRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/SystemXml/FileRemoved.php -------------------------------------------------------------------------------- /src/Operation/SystemXml/GroupAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/SystemXml/GroupAdded.php -------------------------------------------------------------------------------- /src/Operation/SystemXml/GroupRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/SystemXml/GroupRemoved.php -------------------------------------------------------------------------------- /src/Operation/SystemXml/SectionAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/SystemXml/SectionAdded.php -------------------------------------------------------------------------------- /src/Operation/SystemXml/SectionRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/SystemXml/SectionRemoved.php -------------------------------------------------------------------------------- /src/Operation/TableAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/TableAdded.php -------------------------------------------------------------------------------- /src/Operation/TableChangeResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/TableChangeResource.php -------------------------------------------------------------------------------- /src/Operation/TableDropped.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/TableDropped.php -------------------------------------------------------------------------------- /src/Operation/UniqueKeyAdd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/UniqueKeyAdd.php -------------------------------------------------------------------------------- /src/Operation/UniqueKeyChange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/UniqueKeyChange.php -------------------------------------------------------------------------------- /src/Operation/UniqueKeyDrop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/UniqueKeyDrop.php -------------------------------------------------------------------------------- /src/Operation/Visibility/ConstantDecreased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Visibility/ConstantDecreased.php -------------------------------------------------------------------------------- /src/Operation/Visibility/ConstantIncreased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Visibility/ConstantIncreased.php -------------------------------------------------------------------------------- /src/Operation/Visibility/ConstantOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Visibility/ConstantOperation.php -------------------------------------------------------------------------------- /src/Operation/Visibility/MethodDecreased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Visibility/MethodDecreased.php -------------------------------------------------------------------------------- /src/Operation/Visibility/MethodIncreased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Visibility/MethodIncreased.php -------------------------------------------------------------------------------- /src/Operation/Visibility/MethodOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Visibility/MethodOperation.php -------------------------------------------------------------------------------- /src/Operation/Visibility/PropertyDecreased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Visibility/PropertyDecreased.php -------------------------------------------------------------------------------- /src/Operation/Visibility/PropertyIncreased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Visibility/PropertyIncreased.php -------------------------------------------------------------------------------- /src/Operation/Visibility/PropertyOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Visibility/PropertyOperation.php -------------------------------------------------------------------------------- /src/Operation/VisibilityOperation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/VisibilityOperation.php -------------------------------------------------------------------------------- /src/Operation/WhiteListReduced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/WhiteListReduced.php -------------------------------------------------------------------------------- /src/Operation/WhiteListWasRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/WhiteListWasRemoved.php -------------------------------------------------------------------------------- /src/Operation/Xsd/AttributeRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Xsd/AttributeRemoved.php -------------------------------------------------------------------------------- /src/Operation/Xsd/NodeRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Xsd/NodeRemoved.php -------------------------------------------------------------------------------- /src/Operation/Xsd/OptionalAttributeAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Xsd/OptionalAttributeAdded.php -------------------------------------------------------------------------------- /src/Operation/Xsd/OptionalNodeAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Xsd/OptionalNodeAdded.php -------------------------------------------------------------------------------- /src/Operation/Xsd/RequiredAttributeAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Xsd/RequiredAttributeAdded.php -------------------------------------------------------------------------------- /src/Operation/Xsd/RequiredNodeAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Xsd/RequiredNodeAdded.php -------------------------------------------------------------------------------- /src/Operation/Xsd/SchemaDeclarationAdded.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Xsd/SchemaDeclarationAdded.php -------------------------------------------------------------------------------- /src/Operation/Xsd/SchemaDeclarationRemoved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Operation/Xsd/SchemaDeclarationRemoved.php -------------------------------------------------------------------------------- /src/Parser/LessParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Parser/LessParser.php -------------------------------------------------------------------------------- /src/Registry/LessRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Registry/LessRegistry.php -------------------------------------------------------------------------------- /src/Registry/XmlRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Registry/XmlRegistry.php -------------------------------------------------------------------------------- /src/ReportBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/ReportBuilder.php -------------------------------------------------------------------------------- /src/ReportTypes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/ReportTypes.php -------------------------------------------------------------------------------- /src/Reporter/BreakingChangeTableReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Reporter/BreakingChangeTableReporter.php -------------------------------------------------------------------------------- /src/Reporter/HtmlDbSchemaReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Reporter/HtmlDbSchemaReporter.php -------------------------------------------------------------------------------- /src/Reporter/HtmlPackageLevelChangesRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Reporter/HtmlPackageLevelChangesRenderer.php -------------------------------------------------------------------------------- /src/Reporter/HtmlTableRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Reporter/HtmlTableRenderer.php -------------------------------------------------------------------------------- /src/Reporter/HtmlTargetDecorator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Reporter/HtmlTargetDecorator.php -------------------------------------------------------------------------------- /src/Reporter/TableReporter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Reporter/TableReporter.php -------------------------------------------------------------------------------- /src/Scanner/DbSchemaScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Scanner/DbSchemaScanner.php -------------------------------------------------------------------------------- /src/Scanner/DiConfigScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Scanner/DiConfigScanner.php -------------------------------------------------------------------------------- /src/Scanner/EtSchema/XmlConverter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Scanner/EtSchema/XmlConverter.php -------------------------------------------------------------------------------- /src/Scanner/EtSchemaScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Scanner/EtSchemaScanner.php -------------------------------------------------------------------------------- /src/Scanner/LayoutConfigScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Scanner/LayoutConfigScanner.php -------------------------------------------------------------------------------- /src/Scanner/LessScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Scanner/LessScanner.php -------------------------------------------------------------------------------- /src/Scanner/MftfScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Scanner/MftfScanner.php -------------------------------------------------------------------------------- /src/Scanner/ModuleNamespaceResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Scanner/ModuleNamespaceResolver.php -------------------------------------------------------------------------------- /src/Scanner/Scanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Scanner/Scanner.php -------------------------------------------------------------------------------- /src/Scanner/ScannerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Scanner/ScannerInterface.php -------------------------------------------------------------------------------- /src/Scanner/ScannerRegistryFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Scanner/ScannerRegistryFactory.php -------------------------------------------------------------------------------- /src/Scanner/SystemXmlScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Scanner/SystemXmlScanner.php -------------------------------------------------------------------------------- /src/Scanner/XsdScanner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Scanner/XsdScanner.php -------------------------------------------------------------------------------- /src/ScannerRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/ScannerRegistry.php -------------------------------------------------------------------------------- /src/SemanticVersionChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/SemanticVersionChecker.php -------------------------------------------------------------------------------- /src/Visitor/AbstractApiVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Visitor/AbstractApiVisitor.php -------------------------------------------------------------------------------- /src/Visitor/ApiClassVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Visitor/ApiClassVisitor.php -------------------------------------------------------------------------------- /src/Visitor/ApiInterfaceVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Visitor/ApiInterfaceVisitor.php -------------------------------------------------------------------------------- /src/Visitor/ApiTraitVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Visitor/ApiTraitVisitor.php -------------------------------------------------------------------------------- /src/Visitor/NameResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Visitor/NameResolver.php -------------------------------------------------------------------------------- /src/Visitor/ParentConnector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/Visitor/ParentConnector.php -------------------------------------------------------------------------------- /src/resources/application_excludes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/resources/application_excludes.txt -------------------------------------------------------------------------------- /src/resources/application_includes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/resources/application_includes.txt -------------------------------------------------------------------------------- /src/resources/framework_excludes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/resources/framework_excludes.txt -------------------------------------------------------------------------------- /src/resources/module_excludes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magento/magento-semver/HEAD/src/resources/module_excludes.txt -------------------------------------------------------------------------------- /src/resources/package_includes.txt: -------------------------------------------------------------------------------- 1 | * 2 | -------------------------------------------------------------------------------- /var/.gitignore: -------------------------------------------------------------------------------- 1 | /* 2 | !/.gitignore 3 | --------------------------------------------------------------------------------