├── .github ├── .htaccess ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── developer-experience-issue.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .gitmodules ├── Makefile ├── README.md ├── bin ├── analyse ├── bash ├── cache-clean ├── cli ├── clinotty ├── cliq ├── composer ├── copyfromcontainer ├── copytocontainer ├── cron ├── debug-cli ├── dev-test-run ├── dev-urn-catalog-generate ├── devconsole ├── devtools-cli-check ├── docker-compose ├── download ├── fixowns ├── fixperms ├── grunt ├── install-php-extensions ├── magento ├── mftf ├── mysql ├── mysqldump ├── n98-magerun2 ├── node ├── npm ├── phpcbf ├── phpcs ├── phpcs-json-report ├── pwa-studio ├── redis ├── remove ├── removeall ├── removevolumes ├── restart ├── root ├── rootnotty ├── setup ├── setup-composer-auth ├── setup-domain ├── setup-grunt ├── setup-install ├── setup-integration-tests ├── setup-pwa-studio ├── setup-ssl ├── setup-ssl-ca ├── start ├── status ├── stop ├── stopall ├── update └── xdebug ├── compose.commerce246beta.yaml ├── compose.dev-linux.yaml ├── compose.dev-ssh.yaml ├── compose.dev.yaml ├── compose.healthcheck.yaml ├── compose.yaml ├── env ├── blackfire.env ├── db.env ├── elasticsearch.env ├── magento.env ├── opensearch.env ├── phpfpm.env ├── rabbitmq.env └── redis.env ├── src ├── .editorconfig ├── .gitignore ├── .htaccess ├── .htaccess.sample ├── .php_cs.dist ├── .user.ini ├── CHANGELOG.md ├── COPYING.txt ├── Gruntfile.js.sample ├── LICENSE.txt ├── LICENSE_AFL.txt ├── SECURITY.md ├── app │ ├── .htaccess │ ├── autoload.php │ ├── bootstrap.php │ ├── code │ │ └── Magenteiro │ │ │ └── ConfigInfo │ │ │ ├── Console │ │ │ └── Command │ │ │ │ └── GetInfoCommand.php │ │ │ ├── composer.json │ │ │ ├── etc │ │ │ ├── di.xml │ │ │ └── module.xml │ │ │ └── registration.php │ ├── design │ │ └── frontend │ │ │ └── Magenteiro │ │ │ └── firestore │ │ │ ├── Magento_Catalog │ │ │ └── web │ │ │ │ └── images │ │ │ │ └── product │ │ │ │ └── placeholder │ │ │ │ ├── image.jpg │ │ │ │ ├── small_image.jpg │ │ │ │ ├── swatch_image.jpg │ │ │ │ └── thumbnail.jpg │ │ │ ├── Magento_Theme │ │ │ └── layout │ │ │ │ └── default.xml │ │ │ ├── composer.json │ │ │ ├── media │ │ │ └── preview.jpg │ │ │ ├── registration.php │ │ │ ├── theme.xml │ │ │ └── web │ │ │ └── images │ │ │ └── logo.svg │ └── etc │ │ ├── NonComposerComponentRegistration.php │ │ ├── config.php │ │ ├── db_schema.xml │ │ ├── di.xml │ │ ├── registration_globlist.php │ │ └── vendor_path.php ├── auth.json.sample ├── bin │ ├── .htaccess │ ├── magento │ └── n98-magerun2.phar ├── composer.json ├── composer.lock ├── dev │ ├── .htaccess │ ├── tests │ │ ├── acceptance │ │ │ ├── .gitignore │ │ │ ├── .htaccess.sample │ │ │ ├── staticRuleset.json │ │ │ └── tests │ │ │ │ ├── _bootstrap.php │ │ │ │ ├── _data │ │ │ │ ├── BB-Products.csv │ │ │ │ ├── BB-ProductsWorking.csv │ │ │ │ ├── LargerThan2MB.jpg │ │ │ │ ├── adobe-base.jpg │ │ │ │ ├── adobe-small.jpg │ │ │ │ ├── adobe-thumb.jpg │ │ │ │ ├── bmp.bmp │ │ │ │ ├── catalog_import_products.csv │ │ │ │ ├── catalog_import_products_url_rewrite.csv │ │ │ │ ├── catalog_product_err_img.csv │ │ │ │ ├── catalog_product_import_bundle.csv │ │ │ │ ├── catalog_products.csv │ │ │ │ ├── dump.sql │ │ │ │ ├── empty.jpg │ │ │ │ ├── export_import_configurable_product.csv │ │ │ │ ├── gif.gif │ │ │ │ ├── ico.ico │ │ │ │ ├── importSpecChars.csv │ │ │ │ ├── import_productsoftwostoresdata.csv │ │ │ │ ├── import_simple_product.csv │ │ │ │ ├── import_updated.csv │ │ │ │ ├── jpg.jpg │ │ │ │ ├── large.jpg │ │ │ │ ├── lorem_ipsum.docx │ │ │ │ ├── lorem_ipsum.txt │ │ │ │ ├── m-logo.gif │ │ │ │ ├── magento-again.jpg │ │ │ │ ├── magento-logo.png │ │ │ │ ├── magento-logo_2.png │ │ │ │ ├── magento.jpg │ │ │ │ ├── magento2.jpg │ │ │ │ ├── magento3.jpg │ │ │ │ ├── magentoStage.jpg │ │ │ │ ├── medium.jpg │ │ │ │ ├── png.png │ │ │ │ ├── prepared-for-sample-data.csv │ │ │ │ ├── simpleProductUpdate.csv │ │ │ │ ├── small.jpg │ │ │ │ ├── svg.svg │ │ │ │ ├── table_rate_30895.csv │ │ │ │ ├── tablerates.csv │ │ │ │ ├── test-IMAGE_123,456.789.jpg │ │ │ │ └── usa_tablerates.csv │ │ │ │ ├── _suite │ │ │ │ └── suite.xml.sample │ │ │ │ └── functional │ │ │ │ └── Magento │ │ │ │ ├── ConfigurableProductCatalogSearch │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── LICENSE_AFL.txt │ │ │ │ ├── README.md │ │ │ │ ├── Test │ │ │ │ │ ├── EndToEndB2CGuestUserTest │ │ │ │ │ │ └── EndToEndB2CGuestUserTest.xml │ │ │ │ │ └── EndToEndB2CLoggedInUserTest.xml │ │ │ │ ├── composer.json │ │ │ │ └── etc │ │ │ │ │ └── csp_whitelist.xml │ │ │ │ └── ConfigurableProductWishlist │ │ │ │ ├── ActionGroup │ │ │ │ ├── StorefrontCustomerCheckConfigurableProductInWishlistActionGroup.xml │ │ │ │ └── StorefrontCustomerCheckConfigurableProductInWishlistSidebarActionGroup.xml │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── LICENSE_AFL.txt │ │ │ │ ├── README.md │ │ │ │ ├── Test │ │ │ │ └── EndToEndB2CLoggedInUserTest.xml │ │ │ │ └── composer.json │ │ ├── api-functional │ │ │ ├── .gitignore │ │ │ ├── _files │ │ │ │ └── Magento │ │ │ │ │ ├── TestModule1 │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── CookieTester.php │ │ │ │ │ │ └── CookieTester │ │ │ │ │ │ │ ├── DeleteCookie.php │ │ │ │ │ │ │ ├── SetPublicCookie.php │ │ │ │ │ │ │ └── SetSensitiveCookie.php │ │ │ │ │ ├── Service │ │ │ │ │ │ ├── V1 │ │ │ │ │ │ │ ├── AllSoapAndRest.php │ │ │ │ │ │ │ ├── AllSoapAndRestInterface.php │ │ │ │ │ │ │ └── Entity │ │ │ │ │ │ │ │ └── Item.php │ │ │ │ │ │ └── V2 │ │ │ │ │ │ │ ├── AllSoapAndRest.php │ │ │ │ │ │ │ ├── AllSoapAndRestInterface.php │ │ │ │ │ │ │ └── Entity │ │ │ │ │ │ │ └── Item.php │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── acl.xml │ │ │ │ │ │ ├── di.xml │ │ │ │ │ │ ├── extension_attributes.xml │ │ │ │ │ │ ├── frontend │ │ │ │ │ │ │ └── routes.xml │ │ │ │ │ │ ├── module.xml │ │ │ │ │ │ └── webapi.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModule2 │ │ │ │ │ ├── Service │ │ │ │ │ │ └── V1 │ │ │ │ │ │ │ ├── Entity │ │ │ │ │ │ │ └── Item.php │ │ │ │ │ │ │ ├── NoWebApiXml.php │ │ │ │ │ │ │ ├── NoWebApiXmlInterface.php │ │ │ │ │ │ │ ├── SubsetRest.php │ │ │ │ │ │ │ └── SubsetRestInterface.php │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── acl.xml │ │ │ │ │ │ ├── di.xml │ │ │ │ │ │ ├── module.xml │ │ │ │ │ │ ├── schema │ │ │ │ │ │ │ ├── AllSoapNoRestV1.xsd │ │ │ │ │ │ │ ├── NoWebApiXmlV1.xsd │ │ │ │ │ │ │ └── SubsetRestV1.xsd │ │ │ │ │ │ └── webapi.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModule3 │ │ │ │ │ ├── Service │ │ │ │ │ │ └── V1 │ │ │ │ │ │ │ ├── Entity │ │ │ │ │ │ │ ├── Parameter.php │ │ │ │ │ │ │ └── WrappedErrorParameter.php │ │ │ │ │ │ │ ├── Error.php │ │ │ │ │ │ │ └── ErrorInterface.php │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── acl.xml │ │ │ │ │ │ ├── di.xml │ │ │ │ │ │ ├── module.xml │ │ │ │ │ │ └── webapi.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModule4 │ │ │ │ │ ├── Model │ │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ │ └── Item.php │ │ │ │ │ ├── Service │ │ │ │ │ │ └── V1 │ │ │ │ │ │ │ ├── DataObjectService.php │ │ │ │ │ │ │ ├── DataObjectServiceInterface.php │ │ │ │ │ │ │ └── Entity │ │ │ │ │ │ │ ├── DataObjectRequest.php │ │ │ │ │ │ │ ├── DataObjectResponse.php │ │ │ │ │ │ │ ├── ExtensibleRequest.php │ │ │ │ │ │ │ ├── ExtensibleRequestInterface.php │ │ │ │ │ │ │ └── NestedDataObjectRequest.php │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── acl.xml │ │ │ │ │ │ ├── di.xml │ │ │ │ │ │ ├── module.xml │ │ │ │ │ │ └── webapi.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModule5 │ │ │ │ │ ├── Service │ │ │ │ │ │ ├── V1 │ │ │ │ │ │ │ ├── AllSoapAndRest.php │ │ │ │ │ │ │ ├── AllSoapAndRestInterface.php │ │ │ │ │ │ │ ├── Entity │ │ │ │ │ │ │ │ └── AllSoapAndRest.php │ │ │ │ │ │ │ ├── OverrideService.php │ │ │ │ │ │ │ └── OverrideServiceInterface.php │ │ │ │ │ │ └── V2 │ │ │ │ │ │ │ ├── AllSoapAndRest.php │ │ │ │ │ │ │ ├── AllSoapAndRestInterface.php │ │ │ │ │ │ │ └── Entity │ │ │ │ │ │ │ └── AllSoapAndRest.php │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── acl.xml │ │ │ │ │ │ ├── di.xml │ │ │ │ │ │ ├── module.xml │ │ │ │ │ │ └── webapi.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleCatalogSearch │ │ │ │ │ ├── etc │ │ │ │ │ │ └── module.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleDefaultHydrator │ │ │ │ │ ├── Api │ │ │ │ │ │ ├── CustomerPersistenceInterface.php │ │ │ │ │ │ └── Data │ │ │ │ │ │ │ └── ExtensionAttributeInterface.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Address │ │ │ │ │ │ │ └── Mapper.php │ │ │ │ │ │ ├── CustomerPersistence.php │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ └── ExtensionAttribute.php │ │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ │ ├── Address │ │ │ │ │ │ │ ├── ReadHandler.php │ │ │ │ │ │ │ └── SaveHandler.php │ │ │ │ │ │ │ ├── ReadHandler.php │ │ │ │ │ │ │ └── SaveHandler.php │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ ├── db_schema_whitelist.json │ │ │ │ │ │ ├── di.xml │ │ │ │ │ │ ├── extension_attributes.xml │ │ │ │ │ │ ├── module.xml │ │ │ │ │ │ └── webapi.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleFedex │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── MockResponseBodyLoader.php │ │ │ │ │ │ ├── MockSoapClient.php │ │ │ │ │ │ └── MockSoapClientFactory.php │ │ │ │ │ ├── _files │ │ │ │ │ │ ├── mock_response_general_ca.json │ │ │ │ │ │ ├── mock_response_general_us.json │ │ │ │ │ │ ├── mock_response_smart_post_ca.json │ │ │ │ │ │ └── mock_response_smart_post_us.json │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── di.xml │ │ │ │ │ │ └── module.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleGraphQlQuery │ │ │ │ │ ├── Model │ │ │ │ │ │ └── Resolver │ │ │ │ │ │ │ ├── Item.php │ │ │ │ │ │ │ ├── TestUnion.php │ │ │ │ │ │ │ └── UnionTypeResolver.php │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── di.xml │ │ │ │ │ │ ├── module.xml │ │ │ │ │ │ └── schema.graphqls │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleGraphQlQueryExtension │ │ │ │ │ ├── Model │ │ │ │ │ │ └── Resolver │ │ │ │ │ │ │ └── IntegerList.php │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── module.xml │ │ │ │ │ │ └── schema.graphqls │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleIntegrationFromConfig │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── integration.xml │ │ │ │ │ │ └── module.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleJoinDirectives │ │ │ │ │ ├── Api │ │ │ │ │ │ └── TestRepositoryInterface.php │ │ │ │ │ ├── Model │ │ │ │ │ │ └── TestRepository.php │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── acl.xml │ │ │ │ │ │ ├── di.xml │ │ │ │ │ │ ├── extension_attributes.xml │ │ │ │ │ │ ├── module.xml │ │ │ │ │ │ └── webapi.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleMSC │ │ │ │ │ ├── Api │ │ │ │ │ │ ├── AllSoapAndRestInterface.php │ │ │ │ │ │ └── Data │ │ │ │ │ │ │ ├── CustomAttributeDataObjectInterface.php │ │ │ │ │ │ │ ├── CustomAttributeNestedDataObjectInterface.php │ │ │ │ │ │ │ └── ItemInterface.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── AllSoapAndRest.php │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ ├── CustomAttributeDataObject.php │ │ │ │ │ │ │ ├── CustomAttributeNestedDataObject.php │ │ │ │ │ │ │ ├── Eav │ │ │ │ │ │ │ │ └── AttributeMetadata.php │ │ │ │ │ │ │ └── Item.php │ │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ │ └── Item.php │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── acl.xml │ │ │ │ │ │ ├── di.xml │ │ │ │ │ │ ├── extension_attributes.xml │ │ │ │ │ │ ├── module.xml │ │ │ │ │ │ └── webapi.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleOverrideConfig │ │ │ │ │ ├── Model │ │ │ │ │ │ └── FixtureCallStorage.php │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── adminhtml │ │ │ │ │ │ │ └── system.xml │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ └── module.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleOverrideConfig2 │ │ │ │ │ ├── Test │ │ │ │ │ │ └── Api │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── overrides.xml │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── etc │ │ │ │ │ │ └── module.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleOverrideConfig3 │ │ │ │ │ ├── Test │ │ │ │ │ │ └── Api │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── overrides.xml │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── etc │ │ │ │ │ │ └── module.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleUps │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Carrier.php │ │ │ │ │ │ └── MockResponseBodyLoader.php │ │ │ │ │ ├── _files │ │ │ │ │ │ ├── mock_response_ca.txt │ │ │ │ │ │ └── mock_response_us.txt │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── di.xml │ │ │ │ │ │ └── module.xml │ │ │ │ │ └── registration.php │ │ │ │ │ └── TestModuleUsps │ │ │ │ │ ├── Model │ │ │ │ │ ├── MockAsyncClient.php │ │ │ │ │ ├── MockDeferredResponse.php │ │ │ │ │ └── MockResponseBodyLoader.php │ │ │ │ │ ├── _files │ │ │ │ │ ├── mock_response_ca.xml │ │ │ │ │ └── mock_response_us.xml │ │ │ │ │ ├── etc │ │ │ │ │ ├── di.xml │ │ │ │ │ └── module.xml │ │ │ │ │ └── registration.php │ │ │ ├── config │ │ │ │ ├── config-global.php.dist │ │ │ │ └── install-config-mysql.php.dist │ │ │ ├── framework │ │ │ │ ├── Magento │ │ │ │ │ └── TestFramework │ │ │ │ │ │ ├── Annotation │ │ │ │ │ │ ├── ApiConfigFixture.php │ │ │ │ │ │ └── ApiDataFixture.php │ │ │ │ │ │ ├── ApiSuiteLoader.php │ │ │ │ │ │ ├── App │ │ │ │ │ │ └── ApiMutableScopeConfig.php │ │ │ │ │ │ ├── Assert │ │ │ │ │ │ └── AssertArrayContains.php │ │ │ │ │ │ ├── Authentication │ │ │ │ │ │ ├── OauthHelper.php │ │ │ │ │ │ └── Rest │ │ │ │ │ │ │ ├── CurlClient.php │ │ │ │ │ │ │ ├── OauthClient.php │ │ │ │ │ │ │ └── OauthClient │ │ │ │ │ │ │ └── Signature.php │ │ │ │ │ │ ├── Bootstrap │ │ │ │ │ │ └── WebapiDocBlock.php │ │ │ │ │ │ ├── Helper │ │ │ │ │ │ ├── CompareArraysRecursively.php │ │ │ │ │ │ ├── Customer.php │ │ │ │ │ │ └── JsonSerializer.php │ │ │ │ │ │ ├── TestCase │ │ │ │ │ │ ├── GraphQl │ │ │ │ │ │ │ ├── Client.php │ │ │ │ │ │ │ └── ResponseContainsErrorsException.php │ │ │ │ │ │ ├── GraphQlAbstract.php │ │ │ │ │ │ ├── HttpClient │ │ │ │ │ │ │ ├── CurlClient.php │ │ │ │ │ │ │ └── CurlClientWithCookies.php │ │ │ │ │ │ ├── Webapi │ │ │ │ │ │ │ ├── Adapter │ │ │ │ │ │ │ │ ├── Rest.php │ │ │ │ │ │ │ │ ├── Rest │ │ │ │ │ │ │ │ │ ├── DocumentationGenerator.php │ │ │ │ │ │ │ │ │ └── RestClient.php │ │ │ │ │ │ │ │ └── Soap.php │ │ │ │ │ │ │ └── AdapterInterface.php │ │ │ │ │ │ └── WebapiAbstract.php │ │ │ │ │ │ ├── WebApiApplication.php │ │ │ │ │ │ └── WebapiWorkaround │ │ │ │ │ │ ├── Override │ │ │ │ │ │ ├── Config.php │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ ├── Converter.php │ │ │ │ │ │ │ ├── FileCollector.php │ │ │ │ │ │ │ └── SchemaLocator.php │ │ │ │ │ │ └── Fixture │ │ │ │ │ │ │ └── Resolver.php │ │ │ │ │ │ └── etc │ │ │ │ │ │ └── overrides.xsd │ │ │ │ ├── autoload.php │ │ │ │ └── bootstrap.php │ │ │ ├── phpunit_graphql.xml.dist │ │ │ ├── phpunit_rest.xml.dist │ │ │ ├── phpunit_soap.xml.dist │ │ │ └── testsuite │ │ │ │ └── Magento │ │ │ │ ├── Analytics │ │ │ │ └── Api │ │ │ │ │ └── LinkProviderTest.php │ │ │ │ ├── AsynchronousOperations │ │ │ │ └── Api │ │ │ │ │ ├── BulkStatusInterfaceTest.php │ │ │ │ │ └── OperationRepositoryInterfaceTest.php │ │ │ │ ├── Bundle │ │ │ │ └── Api │ │ │ │ │ ├── CartItemRepositoryTest.php │ │ │ │ │ ├── OrderInvoiceCreateTest.php │ │ │ │ │ ├── OrderItemRepositoryTest.php │ │ │ │ │ ├── ProductLinkManagementTest.php │ │ │ │ │ ├── ProductOptionRepositoryTest.php │ │ │ │ │ ├── ProductOptionTypeListTest.php │ │ │ │ │ └── ProductServiceTest.php │ │ │ │ ├── Catalog │ │ │ │ └── Api │ │ │ │ │ ├── AttributeSetManagementTest.php │ │ │ │ │ ├── AttributeSetRepositoryTest.php │ │ │ │ │ ├── BasePriceStorageTest.php │ │ │ │ │ ├── CartItemRepositoryTest.php │ │ │ │ │ ├── CategoryAttributeOptionManagementInterfaceTest.php │ │ │ │ │ ├── CategoryAttributeRepositoryTest.php │ │ │ │ │ ├── CategoryLinkManagementTest.php │ │ │ │ │ ├── CategoryLinkRepositoryTest.php │ │ │ │ │ ├── CategoryListTest.php │ │ │ │ │ ├── CategoryManagementTest.php │ │ │ │ │ ├── CategoryRepositoryTest.php │ │ │ │ │ ├── CostStorageTest.php │ │ │ │ │ ├── OrderItemRepositoryTest.php │ │ │ │ │ ├── ProductAttributeGroupRepositoryTest.php │ │ │ │ │ ├── ProductAttributeManagementTest.php │ │ │ │ │ ├── ProductAttributeMediaGalleryManagementInterfaceTest.php │ │ │ │ │ ├── ProductAttributeOptionManagementInterfaceTest.php │ │ │ │ │ ├── ProductAttributeOptionUpdateInterfaceTest.php │ │ │ │ │ ├── ProductAttributeRepositoryTest.php │ │ │ │ │ ├── ProductAttributeTypesListTest.php │ │ │ │ │ ├── ProductCustomAttributeWrongTypeTest.php │ │ │ │ │ ├── ProductCustomOptionRepositoryTest.php │ │ │ │ │ ├── ProductCustomOptionTypeListTest.php │ │ │ │ │ ├── ProductLinkManagementInterfaceTest.php │ │ │ │ │ ├── ProductLinkRepositoryInterfaceTest.php │ │ │ │ │ ├── ProductLinkTypeListTest.php │ │ │ │ │ ├── ProductMediaAttributeManagementTest.php │ │ │ │ │ ├── ProductRenderListInterfaceTest.php │ │ │ │ │ ├── ProductRepositoryAllStoreViewsTest.php │ │ │ │ │ ├── ProductRepositoryInterfaceTest.php │ │ │ │ │ ├── ProductRepositoryMultiCurrencyTest.php │ │ │ │ │ ├── ProductRepositoryMultiStoreTest.php │ │ │ │ │ ├── ProductSwatchAttributeOptionManagementInterfaceTest.php │ │ │ │ │ ├── ProductTierPriceManagementTest.php │ │ │ │ │ ├── ProductTypeListTest.php │ │ │ │ │ ├── SpecialPriceStorageTest.php │ │ │ │ │ ├── TierPriceStorageTest.php │ │ │ │ │ └── _files │ │ │ │ │ ├── product_options.php │ │ │ │ │ ├── product_options_negative.php │ │ │ │ │ ├── product_options_update_negative.php │ │ │ │ │ └── test_image.jpg │ │ │ │ ├── CatalogInventory │ │ │ │ └── Api │ │ │ │ │ ├── LowStockItemsTest.php │ │ │ │ │ ├── ProductRepositoryInterfaceTest.php │ │ │ │ │ ├── StockItemTest.php │ │ │ │ │ └── StockStatusTest.php │ │ │ │ ├── CheckoutAgreements │ │ │ │ └── Api │ │ │ │ │ ├── CheckoutAgreementsListTest.php │ │ │ │ │ └── CheckoutAgreementsRepositoryTest.php │ │ │ │ ├── Cms │ │ │ │ └── Api │ │ │ │ │ ├── BlockRepositoryTest.php │ │ │ │ │ └── PageRepositoryTest.php │ │ │ │ ├── ConfigurableProduct │ │ │ │ └── Api │ │ │ │ │ ├── CartItemRepositoryTest.php │ │ │ │ │ ├── ConfigurableProductManagementTest.php │ │ │ │ │ ├── LinkManagementTest.php │ │ │ │ │ ├── OptionRepositoryTest.php │ │ │ │ │ ├── OrderItemRepositoryTest.php │ │ │ │ │ └── ProductRepositoryTest.php │ │ │ │ ├── Customer │ │ │ │ └── Api │ │ │ │ │ ├── AccountManagementCustomAttributesTest.php │ │ │ │ │ ├── AccountManagementMeTest.php │ │ │ │ │ ├── AccountManagementTest.php │ │ │ │ │ ├── AddressMetadataTest.php │ │ │ │ │ ├── AddressRepositoryTest.php │ │ │ │ │ ├── CustomerGroupConfigTest.php │ │ │ │ │ ├── CustomerMetadataTest.php │ │ │ │ │ ├── CustomerRepositoryTest.php │ │ │ │ │ ├── CustomerSharingOptionsTest.php │ │ │ │ │ ├── GroupManagementTest.php │ │ │ │ │ ├── GroupRepositoryTest.php │ │ │ │ │ └── _files │ │ │ │ │ ├── buttons.png │ │ │ │ │ └── test_image.jpg │ │ │ │ ├── Directory │ │ │ │ └── Api │ │ │ │ │ ├── CountryInformationAcquirerTest.php │ │ │ │ │ └── CurrencyInformationAcquirerTest.php │ │ │ │ ├── Downloadable │ │ │ │ └── Api │ │ │ │ │ ├── CartItemRepositoryTest.php │ │ │ │ │ ├── LinkRepositoryTest.php │ │ │ │ │ ├── OrderItemRepositoryTest.php │ │ │ │ │ ├── ProductRepositoryTest.php │ │ │ │ │ ├── SampleRepositoryTest.php │ │ │ │ │ └── _files │ │ │ │ │ └── test_image.jpg │ │ │ │ ├── Eav │ │ │ │ └── Api │ │ │ │ │ ├── AttributeSetManagementTest.php │ │ │ │ │ └── AttributeSetRepositoryTest.php │ │ │ │ ├── Framework │ │ │ │ ├── Api │ │ │ │ │ └── Search │ │ │ │ │ │ └── SearchTest.php │ │ │ │ ├── Model │ │ │ │ │ └── Entity │ │ │ │ │ │ └── HydratorTest.php │ │ │ │ └── Stdlib │ │ │ │ │ └── CookieManagerTest.php │ │ │ │ ├── GiftMessage │ │ │ │ └── Api │ │ │ │ │ ├── CartRepositoryTest.php │ │ │ │ │ ├── GuestCartRepositoryTest.php │ │ │ │ │ ├── GuestItemRepositoryTest.php │ │ │ │ │ ├── ItemRepositoryTest.php │ │ │ │ │ ├── OrderGetRepositoryTest.php │ │ │ │ │ └── OrderItemGetRepositoryTest.php │ │ │ │ ├── GraphQl │ │ │ │ ├── Bundle │ │ │ │ │ ├── AddBundleProductToCartSingleMutationTest.php │ │ │ │ │ ├── AddBundleProductToCartTest.php │ │ │ │ │ ├── BundleProductMultipleOptionsTest.php │ │ │ │ │ └── BundleProductViewTest.php │ │ │ │ ├── Catalog │ │ │ │ │ ├── CategoriesQuery │ │ │ │ │ │ ├── CategoriesFilterTest.php │ │ │ │ │ │ ├── CategoriesPaginationTest.php │ │ │ │ │ │ └── CategoryTreeTest.php │ │ │ │ │ ├── CategoryAnchorTest.php │ │ │ │ │ ├── CategoryCanonicalUrlTest.php │ │ │ │ │ ├── CategoryEnabledTest.php │ │ │ │ │ ├── CategoryListTest.php │ │ │ │ │ ├── CategoryProductsCountTest.php │ │ │ │ │ ├── CategoryProductsVariantsTest.php │ │ │ │ │ ├── CategorySpecificFieldsTest.php │ │ │ │ │ ├── CategoryTest.php │ │ │ │ │ ├── CategoryWithDescriptionDirectivesTest.php │ │ │ │ │ ├── ExceptionFormatterDefaultModeTest.php │ │ │ │ │ ├── MediaGalleryTest.php │ │ │ │ │ ├── Options │ │ │ │ │ │ └── Uid │ │ │ │ │ │ │ └── CustomizableOptionsUidTest.php │ │ │ │ │ ├── ProductAttributeOptionsTest.php │ │ │ │ │ ├── ProductAttributeStoreOptionsTest.php │ │ │ │ │ ├── ProductAttributeStoreTest.php │ │ │ │ │ ├── ProductAttributeTypeTest.php │ │ │ │ │ ├── ProductCanonicalUrlTest.php │ │ │ │ │ ├── ProductDeleteTest.php │ │ │ │ │ ├── ProductFragmentTest.php │ │ │ │ │ ├── ProductImageTest.php │ │ │ │ │ ├── ProductInMultipleStoresTest.php │ │ │ │ │ ├── ProductPriceTest.php │ │ │ │ │ ├── ProductSearchAggregationsTest.php │ │ │ │ │ ├── ProductSearchPriceFilterTest.php │ │ │ │ │ ├── ProductSearchTest.php │ │ │ │ │ ├── ProductTextAttributesTest.php │ │ │ │ │ ├── ProductViewTest.php │ │ │ │ │ ├── ReadCategoryAfterDeleteTest.php │ │ │ │ │ ├── StoreConfigTest.php │ │ │ │ │ ├── UrlRewritesTest.php │ │ │ │ │ └── VirtualProductViewTest.php │ │ │ │ ├── CatalogCms │ │ │ │ │ └── CategoryBlockTest.php │ │ │ │ ├── CatalogCustomer │ │ │ │ │ ├── PriceTiersTest.php │ │ │ │ │ ├── SpecialPriceTest.php │ │ │ │ │ ├── TierPricesForCustomersTest.php │ │ │ │ │ └── TierPricesForGuestsTest.php │ │ │ │ ├── CatalogInventory │ │ │ │ │ ├── AddProductToCartTest.php │ │ │ │ │ ├── ProductOnlyXLeftInStockTest.php │ │ │ │ │ ├── ProductStockStatusTest.php │ │ │ │ │ └── UpdateCartItemsTest.php │ │ │ │ ├── CatalogUrlRewrite │ │ │ │ │ └── UrlResolverTest.php │ │ │ │ ├── CheckoutAgreements │ │ │ │ │ └── GetCheckoutAgreementsTest.php │ │ │ │ ├── Cms │ │ │ │ │ ├── CmsBlockTest.php │ │ │ │ │ └── CmsPageTest.php │ │ │ │ ├── CmsUrlRewrite │ │ │ │ │ └── UrlResolverTest.php │ │ │ │ ├── CompareList │ │ │ │ │ └── CompareListTest.php │ │ │ │ ├── ConfigurableProduct │ │ │ │ │ ├── AddConfigurableProductToCartSingleMutationTest.php │ │ │ │ │ ├── AddConfigurableProductToCartTest.php │ │ │ │ │ ├── ConfigurableOptionsSelectionMetadataTest.php │ │ │ │ │ ├── ConfigurableProductFrontendLabelAttributeTest.php │ │ │ │ │ ├── ConfigurableProductMultipleStoreViewTest.php │ │ │ │ │ ├── ConfigurableProductOptionsTest.php │ │ │ │ │ ├── ConfigurableProductQueryTest.php │ │ │ │ │ ├── ConfigurableProductStockStatusTest.php │ │ │ │ │ ├── ConfigurableProductViewTest.php │ │ │ │ │ ├── Options │ │ │ │ │ │ └── Uid │ │ │ │ │ │ │ └── CustomizableValueUidTest.php │ │ │ │ │ ├── RemoveConfigurableProductFromCartTest.php │ │ │ │ │ ├── StoreConfigTest.php │ │ │ │ │ └── UpdateConfigurableCartItemsTest.php │ │ │ │ ├── Customer │ │ │ │ │ ├── ChangeCustomerPasswordTest.php │ │ │ │ │ ├── CreateCustomerAddressTest.php │ │ │ │ │ ├── CreateCustomerTest.php │ │ │ │ │ ├── CreateCustomerV2Test.php │ │ │ │ │ ├── DeleteCustomerAddressTest.php │ │ │ │ │ ├── GenerateCustomerTokenTest.php │ │ │ │ │ ├── GetAddressesTest.php │ │ │ │ │ ├── GetCustomerTest.php │ │ │ │ │ ├── IsEmailAvailableTest.php │ │ │ │ │ ├── LockCustomer.php │ │ │ │ │ ├── RequestPasswordResetEmailTest.php │ │ │ │ │ ├── ResetPasswordTest.php │ │ │ │ │ ├── RevokeCustomerTokenTest.php │ │ │ │ │ ├── StoreConfigTest.php │ │ │ │ │ ├── SubscriptionStatusTest.php │ │ │ │ │ ├── UpdateCustomerAddressTest.php │ │ │ │ │ ├── UpdateCustomerEmailTest.php │ │ │ │ │ ├── UpdateCustomerTest.php │ │ │ │ │ └── UpdateCustomerV2Test.php │ │ │ │ ├── CustomerDownloadableProduct │ │ │ │ │ └── CustomerDownloadableProductTest.php │ │ │ │ ├── Directory │ │ │ │ │ ├── CountriesTest.php │ │ │ │ │ ├── CountryTest.php │ │ │ │ │ └── CurrencyTest.php │ │ │ │ ├── DownloadableProduct │ │ │ │ │ ├── AddDownloadableProductToCartTest.php │ │ │ │ │ ├── DownloadableProductViewTest.php │ │ │ │ │ ├── Options │ │ │ │ │ │ └── Uid │ │ │ │ │ │ │ └── DownloadableLinksValueUidTest.php │ │ │ │ │ └── UpdateDownloadableCartItemsTest.php │ │ │ │ ├── FedEx │ │ │ │ │ └── SetFedExShippingMethodsOnCartTest.php │ │ │ │ ├── Framework │ │ │ │ │ ├── QueryComplexityLimiterTest.php │ │ │ │ │ └── RequiredInputArgumentTest.php │ │ │ │ ├── GetCustomerAuthenticationHeader.php │ │ │ │ ├── GiftMessage │ │ │ │ │ ├── Cart │ │ │ │ │ │ ├── GiftMessageTest.php │ │ │ │ │ │ └── Item │ │ │ │ │ │ │ └── GiftMessageTest.php │ │ │ │ │ └── Order │ │ │ │ │ │ └── GiftMessageTest.php │ │ │ │ ├── GroupedProduct │ │ │ │ │ ├── AddGroupedProductToWishlistTest.php │ │ │ │ │ ├── GroupedProductViewTest.php │ │ │ │ │ └── ProductViewTest.php │ │ │ │ ├── IntrospectionQueryTest.php │ │ │ │ ├── LoginAsCustomerGraphQl │ │ │ │ │ ├── CreateCustomerV2Test.php │ │ │ │ │ ├── GenerateLoginCustomerTokenTest.php │ │ │ │ │ └── UpdateCustomerV2Test.php │ │ │ │ ├── Newsletter │ │ │ │ │ ├── Customer │ │ │ │ │ │ └── SubscribeEmailToNewsletterTest.php │ │ │ │ │ └── Guest │ │ │ │ │ │ └── SubscribeEmailToNewsletterTest.php │ │ │ │ ├── PageCache │ │ │ │ │ ├── CacheTagTest.php │ │ │ │ │ ├── Cms │ │ │ │ │ │ ├── BlockCacheTest.php │ │ │ │ │ │ └── PageCacheTest.php │ │ │ │ │ ├── ProductInMultipleStoresCacheTest.php │ │ │ │ │ ├── Quote │ │ │ │ │ │ └── Guest │ │ │ │ │ │ │ └── CartCacheTest.php │ │ │ │ │ └── UrlRewrite │ │ │ │ │ │ └── UrlResolverCacheTest.php │ │ │ │ ├── Quote │ │ │ │ │ ├── AddDownloadableProductToCartSingleMutationTest.php │ │ │ │ │ ├── AddDownloadableProductWithCustomOptionsToCartTest.php │ │ │ │ │ ├── AddSimpleProductToCartEndToEndTest.php │ │ │ │ │ ├── AddSimpleProductToCartSingleMutationTest.php │ │ │ │ │ ├── AddSimpleProductWithCustomOptionsToCartTest.php │ │ │ │ │ ├── AddVirtualProductWithCustomOptionsToCartTest.php │ │ │ │ │ ├── CartPromotionsTest.php │ │ │ │ │ ├── Customer │ │ │ │ │ │ ├── AddSimpleProductToCartTest.php │ │ │ │ │ │ ├── AddVirtualProductToCartTest.php │ │ │ │ │ │ ├── ApplyCouponToCartTest.php │ │ │ │ │ │ ├── CartDiscountTest.php │ │ │ │ │ │ ├── CartTotalsTest.php │ │ │ │ │ │ ├── CheckoutEndToEndTest.php │ │ │ │ │ │ ├── CreateEmptyCartTest.php │ │ │ │ │ │ ├── GetAvailablePaymentMethodsTest.php │ │ │ │ │ │ ├── GetAvailableShippingMethodsTest.php │ │ │ │ │ │ ├── GetCartEmailTest.php │ │ │ │ │ │ ├── GetCartIsVirtualTest.php │ │ │ │ │ │ ├── GetCartTest.php │ │ │ │ │ │ ├── GetCustomerCartTest.php │ │ │ │ │ │ ├── GetSelectedPaymentMethodTest.php │ │ │ │ │ │ ├── GetSelectedShippingMethodTest.php │ │ │ │ │ │ ├── GetSpecifiedBillingAddressTest.php │ │ │ │ │ │ ├── GetSpecifiedShippingAddressTest.php │ │ │ │ │ │ ├── MergeCartsTest.php │ │ │ │ │ │ ├── PlaceOrderTest.php │ │ │ │ │ │ ├── RemoveCouponFromCartTest.php │ │ │ │ │ │ ├── RemoveItemFromCartTest.php │ │ │ │ │ │ ├── SetBillingAddressOnCartTest.php │ │ │ │ │ │ ├── SetGuestEmailOnCartTest.php │ │ │ │ │ │ ├── SetOfflinePaymentMethodsOnCartTest.php │ │ │ │ │ │ ├── SetOfflineShippingMethodsOnCartTest.php │ │ │ │ │ │ ├── SetPaymentMethodAndPlaceOrderTest.php │ │ │ │ │ │ ├── SetPaymentMethodOnCartTest.php │ │ │ │ │ │ ├── SetPurchaseOrderPaymentMethodOnCartTest.php │ │ │ │ │ │ ├── SetShippingAddressOnCartTest.php │ │ │ │ │ │ ├── SetShippingMethodsOnCartTest.php │ │ │ │ │ │ └── UpdateCartItemsTest.php │ │ │ │ │ ├── EditQuoteItemWithCustomOptionsTest.php │ │ │ │ │ ├── GetCartItemOptionsFromUID.php │ │ │ │ │ ├── GetCartTotalQuantityTest.php │ │ │ │ │ ├── GetCustomOptionsValuesForQueryBySku.php │ │ │ │ │ ├── GetCustomOptionsWithUIDForQueryBySku.php │ │ │ │ │ ├── GetMaskedQuoteIdByReservedOrderId.php │ │ │ │ │ ├── GetQuoteItemIdByReservedQuoteIdAndSku.php │ │ │ │ │ └── Guest │ │ │ │ │ │ ├── AddSimpleProductToCartTest.php │ │ │ │ │ │ ├── AddVirtualProductToCartTest.php │ │ │ │ │ │ ├── AllowGuestCheckoutOptionTest.php │ │ │ │ │ │ ├── ApplyCouponToCartTest.php │ │ │ │ │ │ ├── ApplyCouponsToCartTest.php │ │ │ │ │ │ ├── CartDiscountTest.php │ │ │ │ │ │ ├── CartTotalsTest.php │ │ │ │ │ │ ├── CheckoutEndToEndTest.php │ │ │ │ │ │ ├── CreateEmptyCartTest.php │ │ │ │ │ │ ├── GetAvailablePaymentMethodsTest.php │ │ │ │ │ │ ├── GetAvailableShippingMethodsTest.php │ │ │ │ │ │ ├── GetCartEmailTest.php │ │ │ │ │ │ ├── GetCartIsVirtualTest.php │ │ │ │ │ │ ├── GetCartTest.php │ │ │ │ │ │ ├── GetSelectedPaymentMethodTest.php │ │ │ │ │ │ ├── GetSelectedShippingMethodTest.php │ │ │ │ │ │ ├── GetSpecifiedBillingAddressTest.php │ │ │ │ │ │ ├── GetSpecifiedShippingAddressTest.php │ │ │ │ │ │ ├── MergeCartsTest.php │ │ │ │ │ │ ├── PlaceOrderTest.php │ │ │ │ │ │ ├── RemoveCouponFromCartTest.php │ │ │ │ │ │ ├── RemoveItemFromCartTest.php │ │ │ │ │ │ ├── SetBillingAddressOnCartTest.php │ │ │ │ │ │ ├── SetGuestEmailOnCartTest.php │ │ │ │ │ │ ├── SetOfflinePaymentMethodsOnCartTest.php │ │ │ │ │ │ ├── SetOfflineShippingMethodsOnCartTest.php │ │ │ │ │ │ ├── SetPaymentMethodAndPlaceOrderTest.php │ │ │ │ │ │ ├── SetPaymentMethodOnCartTest.php │ │ │ │ │ │ ├── SetPurchaseOrderPaymentMethodOnCartTest.php │ │ │ │ │ │ ├── SetShippingAddressOnCartTest.php │ │ │ │ │ │ ├── SetShippingMethodsOnCartTest.php │ │ │ │ │ │ └── UpdateCartItemsTest.php │ │ │ │ ├── RelatedProduct │ │ │ │ │ └── GetRelatedProductsTest.php │ │ │ │ ├── Review │ │ │ │ │ ├── CreateProductReviewsTest.php │ │ │ │ │ └── GetProductReviewsTest.php │ │ │ │ ├── Sales │ │ │ │ │ ├── CreditmemoTest.php │ │ │ │ │ ├── CustomerOrders │ │ │ │ │ │ └── OrderShipmentsTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── CustomerPlaceOrder.php │ │ │ │ │ │ └── CustomerPlaceOrderWithDownloadable.php │ │ │ │ │ ├── InvoiceTest.php │ │ │ │ │ ├── OrdersTest.php │ │ │ │ │ ├── ReorderConfigurableWithVariationsTest.php │ │ │ │ │ ├── ReorderMultipleProductsTest.php │ │ │ │ │ ├── ReorderOverlayProductTest.php │ │ │ │ │ ├── ReorderTest.php │ │ │ │ │ ├── RetrieveOrdersByOrderNumberTest.php │ │ │ │ │ ├── RetrieveOrdersWithBundleProductByOrderNumberTest.php │ │ │ │ │ └── RetrieveOrdersWithDownloadableProductTest.php │ │ │ │ ├── SendFriend │ │ │ │ │ ├── SendFriendTest.php │ │ │ │ │ └── StoreConfigTest.php │ │ │ │ ├── Store │ │ │ │ │ ├── AvailableStoreConfigTest.php │ │ │ │ │ ├── StoreConfigResolverTest.php │ │ │ │ │ ├── StoreSaveTest.php │ │ │ │ │ └── StoreValidatorTest.php │ │ │ │ ├── Swatches │ │ │ │ │ ├── ProductSearchTest.php │ │ │ │ │ └── ProductSwatchDataTest.php │ │ │ │ ├── Tax │ │ │ │ │ └── ProductViewTest.php │ │ │ │ ├── TestModule │ │ │ │ │ ├── GraphQlMutationTest.php │ │ │ │ │ └── GraphQlQueryTest.php │ │ │ │ ├── Ups │ │ │ │ │ └── SetUpsShippingMethodsOnCartTest.php │ │ │ │ ├── UrlRewrite │ │ │ │ │ └── UrlResolverTest.php │ │ │ │ ├── Usps │ │ │ │ │ └── SetUspsShippingMethodsOnCartTest.php │ │ │ │ ├── VariablesSupportQueryTest.php │ │ │ │ ├── Vault │ │ │ │ │ └── CustomerPaymentTokensTest.php │ │ │ │ ├── Weee │ │ │ │ │ ├── ProductPriceWithFPTTest.php │ │ │ │ │ └── StoreConfigFPTTest.php │ │ │ │ ├── Wishlist │ │ │ │ │ ├── AddBundleProductToWishlistTest.php │ │ │ │ │ ├── AddConfigurableProductToWishlistTest.php │ │ │ │ │ ├── AddDownloadableProductToWishlistTest.php │ │ │ │ │ ├── CustomerWishlistTest.php │ │ │ │ │ ├── CustomerWishlistsTest.php │ │ │ │ │ ├── DeleteProductsFromWishlistTest.php │ │ │ │ │ ├── GetCustomOptionsWithIDV2ForQueryBySku.php │ │ │ │ │ ├── GetCustomOptionsWithUidForQueryBySku.php │ │ │ │ │ ├── UpdateProductsFromWishlistTest.php │ │ │ │ │ └── WishlistTest.php │ │ │ │ └── _files │ │ │ │ │ ├── query_introspection.php │ │ │ │ │ └── schema_response_sdl_deprecated_annotation.php │ │ │ │ ├── GroupedProduct │ │ │ │ └── Api │ │ │ │ │ ├── CartItemRepositoryTest.php │ │ │ │ │ ├── ProductLinkManagementTest.php │ │ │ │ │ ├── ProductLinkRepositoryTest.php │ │ │ │ │ ├── ProductLinkTypeListTest.php │ │ │ │ │ └── ProductRepositoryInterfaceTest.php │ │ │ │ ├── Integration │ │ │ │ └── Model │ │ │ │ │ ├── AdminTokenServiceTest.php │ │ │ │ │ ├── CustomerTokenServiceTest.php │ │ │ │ │ └── IntegrationTest.php │ │ │ │ ├── Multishipping │ │ │ │ └── Api │ │ │ │ │ └── CartRepositoryTest.php │ │ │ │ ├── ProductVideo │ │ │ │ └── ProductVideoExternalSourceTest.php │ │ │ │ ├── Quote │ │ │ │ └── Api │ │ │ │ │ ├── BillingAddressManagementTest.php │ │ │ │ │ ├── CartAddingItemsTest.php │ │ │ │ │ ├── CartItemRepositoryTest.php │ │ │ │ │ ├── CartManagementTest.php │ │ │ │ │ ├── CartRepositoryTest.php │ │ │ │ │ ├── CartTotalRepositoryTest.php │ │ │ │ │ ├── CouponManagementTest.php │ │ │ │ │ ├── GuestBillingAddressManagementTest.php │ │ │ │ │ ├── GuestCartAddingItemsTest.php │ │ │ │ │ ├── GuestCartItemRepositoryTest.php │ │ │ │ │ ├── GuestCartManagementTest.php │ │ │ │ │ ├── GuestCartRepositoryTest.php │ │ │ │ │ ├── GuestCartTotalRepositoryTest.php │ │ │ │ │ ├── GuestCouponManagementTest.php │ │ │ │ │ ├── GuestPaymentMethodManagementTest.php │ │ │ │ │ ├── GuestShipmentEstimationTest.php │ │ │ │ │ ├── GuestShipmentEstimationWithExtensionAttributesTest.php │ │ │ │ │ ├── GuestShippingMethodManagementTest.php │ │ │ │ │ ├── PaymentMethodManagementTest.php │ │ │ │ │ └── ShippingMethodManagementTest.php │ │ │ │ ├── Sales │ │ │ │ └── Service │ │ │ │ │ └── V1 │ │ │ │ │ ├── CreditMemoCreateRefundTest.php │ │ │ │ │ ├── CreditmemoAddCommentTest.php │ │ │ │ │ ├── CreditmemoCancelTest.php │ │ │ │ │ ├── CreditmemoCommentsListTest.php │ │ │ │ │ ├── CreditmemoCreateTest.php │ │ │ │ │ ├── CreditmemoEmailTest.php │ │ │ │ │ ├── CreditmemoGetTest.php │ │ │ │ │ ├── CreditmemoListTest.php │ │ │ │ │ ├── InvoiceAddCommentTest.php │ │ │ │ │ ├── InvoiceCaptureTest.php │ │ │ │ │ ├── InvoiceCommentsListTest.php │ │ │ │ │ ├── InvoiceCreateTest.php │ │ │ │ │ ├── InvoiceEmailTest.php │ │ │ │ │ ├── InvoiceGetTest.php │ │ │ │ │ ├── InvoiceListTest.php │ │ │ │ │ ├── InvoiceVoidTest.php │ │ │ │ │ ├── OrderAddressUpdateTest.php │ │ │ │ │ ├── OrderCancelTest.php │ │ │ │ │ ├── OrderCommentsListTest.php │ │ │ │ │ ├── OrderCreateTest.php │ │ │ │ │ ├── OrderEmailTest.php │ │ │ │ │ ├── OrderGetStatusTest.php │ │ │ │ │ ├── OrderGetTest.php │ │ │ │ │ ├── OrderHoldTest.php │ │ │ │ │ ├── OrderInvoiceCreateTest.php │ │ │ │ │ ├── OrderItemGetListTest.php │ │ │ │ │ ├── OrderItemGetTest.php │ │ │ │ │ ├── OrderListTest.php │ │ │ │ │ ├── OrderStatusHistoryAddTest.php │ │ │ │ │ ├── OrderUnHoldTest.php │ │ │ │ │ ├── OrderUpdateTest.php │ │ │ │ │ ├── RefundOrderTest.php │ │ │ │ │ ├── ShipOrderTest.php │ │ │ │ │ ├── ShipmentAddCommentTest.php │ │ │ │ │ ├── ShipmentAddTrackTest.php │ │ │ │ │ ├── ShipmentCommentsListTest.php │ │ │ │ │ ├── ShipmentCreateTest.php │ │ │ │ │ ├── ShipmentEmailTest.php │ │ │ │ │ ├── ShipmentGetTest.php │ │ │ │ │ ├── ShipmentLabelGetTest.php │ │ │ │ │ ├── ShipmentListTest.php │ │ │ │ │ ├── ShipmentRemoveTrackTest.php │ │ │ │ │ └── TransactionTest.php │ │ │ │ ├── SalesInventory │ │ │ │ └── Api │ │ │ │ │ └── Service │ │ │ │ │ └── V1 │ │ │ │ │ └── ReturnItemsAfterRefundOrderTest.php │ │ │ │ ├── SalesRule │ │ │ │ └── Api │ │ │ │ │ ├── CouponManagementTest.php │ │ │ │ │ ├── CouponRepositoryTest.php │ │ │ │ │ ├── GuestTotalsInformationManagement.php │ │ │ │ │ ├── RuleRepositoryTest.php │ │ │ │ │ └── TotalsInformationManagement.php │ │ │ │ ├── Search │ │ │ │ └── Api │ │ │ │ │ └── SearchTest.php │ │ │ │ ├── Store │ │ │ │ └── Api │ │ │ │ │ ├── GroupRepositoryTest.php │ │ │ │ │ ├── StoreConfigManagerTest.php │ │ │ │ │ ├── StoreRepositoryTest.php │ │ │ │ │ └── WebsiteRepositoryTest.php │ │ │ │ ├── Swatches │ │ │ │ └── Api │ │ │ │ │ └── ProductAttributeOptionManagementInterfaceTest.php │ │ │ │ ├── Tax │ │ │ │ └── Api │ │ │ │ │ ├── TaxClassRepositoryTest.php │ │ │ │ │ ├── TaxRateRepositoryTest.php │ │ │ │ │ └── TaxRuleRepositoryInterfaceTest.php │ │ │ │ ├── TestModuleOverrideConfig │ │ │ │ ├── AbstractOverridesTest.php │ │ │ │ ├── Inheritance │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── FixturesAbstractClass.php │ │ │ │ │ │ ├── FixturesInterface.php │ │ │ │ │ │ └── FixturesTest.php │ │ │ │ │ └── Skip │ │ │ │ │ │ ├── SkipAbstractClass.php │ │ │ │ │ │ ├── SkipInterface.php │ │ │ │ │ │ └── SkipTest.php │ │ │ │ ├── MagentoApiConfigFixture │ │ │ │ │ ├── AddFixtureTest.php │ │ │ │ │ ├── RemoveFixtureTest.php │ │ │ │ │ └── ReplaceFixtureTest.php │ │ │ │ ├── MagentoApiDataFixture │ │ │ │ │ ├── AddFixtureTest.php │ │ │ │ │ ├── RemoveFixtureTest.php │ │ │ │ │ ├── ReplaceFixtureTest.php │ │ │ │ │ └── SortFixturesTest.php │ │ │ │ └── Skip │ │ │ │ │ ├── SkipClassTest.php │ │ │ │ │ ├── SkipDataSetTest.php │ │ │ │ │ └── SkipMethodTest.php │ │ │ │ ├── WebApiTest.php │ │ │ │ ├── Webapi │ │ │ │ ├── Authentication │ │ │ │ │ └── RestTest.php │ │ │ │ ├── CustomAttributeTypeWsdlGenerationTest.php │ │ │ │ ├── DataObjectSerialization │ │ │ │ │ └── ServiceSerializationTest.php │ │ │ │ ├── DeserializationTest.php │ │ │ │ ├── JoinDirectivesTest.php │ │ │ │ ├── JsonGenerationFromDataObjectTest.php │ │ │ │ ├── PartialResponseTest.php │ │ │ │ ├── RestSessionCookieTest.php │ │ │ │ ├── Routing │ │ │ │ │ ├── BaseService.php │ │ │ │ │ ├── CoreRoutingTest.php │ │ │ │ │ ├── GettersTest.php │ │ │ │ │ ├── NoWebApiXmlTest.php │ │ │ │ │ ├── RequestIdOverrideTest.php │ │ │ │ │ ├── RestErrorHandlingTest.php │ │ │ │ │ ├── ServiceVersionV1Test.php │ │ │ │ │ ├── ServiceVersionV2Test.php │ │ │ │ │ ├── SoapErrorHandlingTest.php │ │ │ │ │ └── SubsetTest.php │ │ │ │ └── WsdlGenerationFromDataObjectTest.php │ │ │ │ └── WebapiAsync │ │ │ │ └── Model │ │ │ │ ├── AsyncBulkScheduleTest.php │ │ │ │ ├── AsyncScheduleCustomRouteTest.php │ │ │ │ ├── AsyncScheduleMultiStoreTest.php │ │ │ │ ├── AsyncScheduleTest.php │ │ │ │ └── OrderRepositoryInterfaceTest.php │ │ ├── error_handler.php │ │ ├── integration │ │ │ ├── .gitignore │ │ │ ├── _files │ │ │ │ └── Magento │ │ │ │ │ ├── TestModuleAsyncAmqp │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── AsyncTestData.php │ │ │ │ │ │ ├── CustomHandler.php │ │ │ │ │ │ ├── RequestHandler.php │ │ │ │ │ │ └── WildCardHandler.php │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── communication.xml │ │ │ │ │ │ ├── module.xml │ │ │ │ │ │ ├── queue.xml │ │ │ │ │ │ ├── queue_consumer.xml │ │ │ │ │ │ ├── queue_publisher.xml │ │ │ │ │ │ └── queue_topology.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleCatalogInventoryCache │ │ │ │ │ ├── Plugin │ │ │ │ │ │ └── PreventCachingPreloadedStockDataInToStockRegistry.php │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── di.xml │ │ │ │ │ │ └── module.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleCatalogSearch │ │ │ │ │ ├── Model │ │ │ │ │ │ └── ElasticsearchVersionChecker.php │ │ │ │ │ ├── etc │ │ │ │ │ │ └── module.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleCspConfig │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── adminhtml │ │ │ │ │ │ │ └── csp_whitelist.xml │ │ │ │ │ │ ├── csp_whitelist.xml │ │ │ │ │ │ └── module.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleCspConfig2 │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── csp_whitelist.xml │ │ │ │ │ │ └── module.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleCspUtil │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Csp │ │ │ │ │ │ │ ├── Aware.php │ │ │ │ │ │ │ └── Helper.php │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── csp_whitelist.xml │ │ │ │ │ │ ├── frontend │ │ │ │ │ │ │ └── routes.xml │ │ │ │ │ │ └── module.xml │ │ │ │ │ ├── registration.php │ │ │ │ │ └── view │ │ │ │ │ │ └── frontend │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── csputil_csp_aware.xml │ │ │ │ │ │ └── csputil_csp_helper.xml │ │ │ │ │ │ └── templates │ │ │ │ │ │ ├── helper.phtml │ │ │ │ │ │ └── secure.phtml │ │ │ │ │ ├── TestModuleDirectoryZipCodes │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── module.xml │ │ │ │ │ │ └── zip_codes.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleExtensionAttributes │ │ │ │ │ ├── Api │ │ │ │ │ │ └── Data │ │ │ │ │ │ │ ├── FakeAddressInterface.php │ │ │ │ │ │ │ ├── FakeAttributeMetadataInterface.php │ │ │ │ │ │ │ ├── FakeCustomerInterface.php │ │ │ │ │ │ │ ├── FakeExtensibleOneInterface.php │ │ │ │ │ │ │ ├── FakeExtensibleTwoInterface.php │ │ │ │ │ │ │ └── FakeRegionInterface.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ ├── FakeAddress.php │ │ │ │ │ │ │ ├── FakeAttributeMetadata.php │ │ │ │ │ │ │ ├── FakeCustomer.php │ │ │ │ │ │ │ ├── FakeExtensibleOne.php │ │ │ │ │ │ │ ├── FakeExtensibleTwo.php │ │ │ │ │ │ │ └── FakeRegion.php │ │ │ │ │ │ ├── FakeAddress.php │ │ │ │ │ │ ├── FakeAttributeMetadata.php │ │ │ │ │ │ ├── FakeCustomer.php │ │ │ │ │ │ └── FakeRegion.php │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── extension_attributes.xml │ │ │ │ │ │ └── module.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleFakePaymentMethod │ │ │ │ │ ├── Gateway │ │ │ │ │ │ └── Command │ │ │ │ │ │ │ └── DoNothingCommand.php │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── di.xml │ │ │ │ │ │ └── module.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleMessageQueueConfigOverride │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── module.xml │ │ │ │ │ │ └── queue_topology.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleMessageQueueConfiguration │ │ │ │ │ ├── AsyncHandler.php │ │ │ │ │ ├── HandlerOne.php │ │ │ │ │ ├── HandlerTwo.php │ │ │ │ │ ├── SyncHandler.php │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── communication.xml │ │ │ │ │ │ ├── module.xml │ │ │ │ │ │ ├── queue.xml │ │ │ │ │ │ ├── queue_consumer.xml │ │ │ │ │ │ ├── queue_publisher.xml │ │ │ │ │ │ └── queue_topology.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleMysqlMq │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── DataObject.php │ │ │ │ │ │ ├── DataObjectRepository.php │ │ │ │ │ │ └── Processor.php │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── communication.xml │ │ │ │ │ │ ├── module.xml │ │ │ │ │ │ ├── queue.xml │ │ │ │ │ │ ├── queue_consumer.xml │ │ │ │ │ │ ├── queue_publisher.xml │ │ │ │ │ │ └── queue_topology.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleOverrideConfig │ │ │ │ │ ├── Model │ │ │ │ │ │ └── FixtureCallStorage.php │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── adminhtml │ │ │ │ │ │ │ └── system.xml │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ └── module.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleOverrideConfig2 │ │ │ │ │ ├── Test │ │ │ │ │ │ └── Integration │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── overrides.xml │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── etc │ │ │ │ │ │ └── module.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleOverrideConfig3 │ │ │ │ │ ├── Test │ │ │ │ │ │ └── Integration │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── overrides.xml │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── etc │ │ │ │ │ │ └── module.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleQuoteTotalsObserver │ │ │ │ │ ├── Model │ │ │ │ │ │ └── Config.php │ │ │ │ │ ├── Observer │ │ │ │ │ │ └── AfterCollectTotals.php │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── events.xml │ │ │ │ │ │ └── module.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleSample │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── etc │ │ │ │ │ │ └── module.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleSecureHtmlRenderer │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Secure │ │ │ │ │ │ │ └── Helper.php │ │ │ │ │ ├── composer.json │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── frontend │ │ │ │ │ │ │ └── routes.xml │ │ │ │ │ │ └── module.xml │ │ │ │ │ ├── registration.php │ │ │ │ │ └── view │ │ │ │ │ │ └── frontend │ │ │ │ │ │ ├── layout │ │ │ │ │ │ └── securehtml_secure_helper.xml │ │ │ │ │ │ └── templates │ │ │ │ │ │ └── helper.phtml │ │ │ │ │ ├── TestModuleSimpleTemplateDirective │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── FooFilter.php │ │ │ │ │ │ ├── LegacyFilter.php │ │ │ │ │ │ └── MyDirProcessor.php │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── di.xml │ │ │ │ │ │ └── module.xml │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestModuleSynchronousAmqp │ │ │ │ │ ├── Api │ │ │ │ │ │ └── ServiceInterface.php │ │ │ │ │ ├── Model │ │ │ │ │ │ └── RpcRequestHandler.php │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── communication.xml │ │ │ │ │ │ ├── di.xml │ │ │ │ │ │ ├── module.xml │ │ │ │ │ │ ├── queue.xml │ │ │ │ │ │ ├── queue_consumer.xml │ │ │ │ │ │ ├── queue_publisher.xml │ │ │ │ │ │ └── queue_topology.xml │ │ │ │ │ └── registration.php │ │ │ │ │ └── TestModuleWysiwygConfig │ │ │ │ │ ├── Model │ │ │ │ │ └── Config.php │ │ │ │ │ ├── etc │ │ │ │ │ ├── adminhtml │ │ │ │ │ │ └── di.xml │ │ │ │ │ ├── di.xml │ │ │ │ │ └── module.xml │ │ │ │ │ ├── registration.php │ │ │ │ │ └── view │ │ │ │ │ └── adminhtml │ │ │ │ │ └── web │ │ │ │ │ └── wysiwyg │ │ │ │ │ └── tinymce4TestAdapter.js │ │ │ ├── bin │ │ │ │ └── magento │ │ │ ├── etc │ │ │ │ ├── config-global.php.dist │ │ │ │ ├── di │ │ │ │ │ └── preferences │ │ │ │ │ │ └── ce.php │ │ │ │ └── install-config-mysql.php.dist │ │ │ ├── framework │ │ │ │ ├── Magento │ │ │ │ │ └── TestFramework │ │ │ │ │ │ ├── Annotation │ │ │ │ │ │ ├── AbstractDataFixture.php │ │ │ │ │ │ ├── AdminConfigFixture.php │ │ │ │ │ │ ├── AppArea.php │ │ │ │ │ │ ├── AppIsolation.php │ │ │ │ │ │ ├── Cache.php │ │ │ │ │ │ ├── ComponentRegistrarFixture.php │ │ │ │ │ │ ├── ConfigFixture.php │ │ │ │ │ │ ├── DataFixture.php │ │ │ │ │ │ ├── DataFixtureBeforeTransaction.php │ │ │ │ │ │ ├── DbIsolation.php │ │ │ │ │ │ ├── IndexerDimensionMode.php │ │ │ │ │ │ └── TestsIsolation.php │ │ │ │ │ │ ├── Api │ │ │ │ │ │ └── Config │ │ │ │ │ │ │ └── Reader │ │ │ │ │ │ │ └── FileResolver.php │ │ │ │ │ │ ├── App │ │ │ │ │ │ ├── Config.php │ │ │ │ │ │ ├── EnvironmentFactory.php │ │ │ │ │ │ ├── Filesystem.php │ │ │ │ │ │ ├── MutableScopeConfig.php │ │ │ │ │ │ ├── ObjectManager │ │ │ │ │ │ │ └── Environment │ │ │ │ │ │ │ │ └── Developer.php │ │ │ │ │ │ ├── ReinitableConfig.php │ │ │ │ │ │ └── State.php │ │ │ │ │ │ ├── Application.php │ │ │ │ │ │ ├── Backend │ │ │ │ │ │ └── App │ │ │ │ │ │ │ └── Config.php │ │ │ │ │ │ ├── Bootstrap.php │ │ │ │ │ │ ├── Bootstrap │ │ │ │ │ │ ├── DocBlock.php │ │ │ │ │ │ ├── Environment.php │ │ │ │ │ │ ├── Memory.php │ │ │ │ │ │ ├── MemoryFactory.php │ │ │ │ │ │ ├── Profiler.php │ │ │ │ │ │ └── Settings.php │ │ │ │ │ │ ├── Bundle │ │ │ │ │ │ └── Model │ │ │ │ │ │ │ └── PrepareBundleLinks.php │ │ │ │ │ │ ├── Catalog │ │ │ │ │ │ ├── Block │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ │ └── View │ │ │ │ │ │ │ │ └── Options │ │ │ │ │ │ │ │ ├── DateGroupDataProvider.php │ │ │ │ │ │ │ │ ├── FileGroupDataProvider.php │ │ │ │ │ │ │ │ ├── SelectGroupDataProvider.php │ │ │ │ │ │ │ │ └── TextGroupDataProvider.php │ │ │ │ │ │ └── Model │ │ │ │ │ │ │ ├── CategoryLayoutUpdateManager.php │ │ │ │ │ │ │ ├── GetCategoryByName.php │ │ │ │ │ │ │ ├── Indexer │ │ │ │ │ │ │ ├── Category │ │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ │ │ └── Action │ │ │ │ │ │ │ │ │ └── Full.php │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ │ └── Flat │ │ │ │ │ │ │ │ └── Action │ │ │ │ │ │ │ │ └── Full.php │ │ │ │ │ │ │ ├── Layer │ │ │ │ │ │ │ └── QuickSearchByQuery.php │ │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ │ │ └── DataProvider │ │ │ │ │ │ │ │ │ ├── Decimal.php │ │ │ │ │ │ │ │ │ └── MediaImage.php │ │ │ │ │ │ │ ├── Option │ │ │ │ │ │ │ │ ├── DataProvider │ │ │ │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ │ │ │ ├── AbstractBase.php │ │ │ │ │ │ │ │ │ │ ├── AbstractSelect.php │ │ │ │ │ │ │ │ │ │ ├── AbstractText.php │ │ │ │ │ │ │ │ │ │ ├── Area.php │ │ │ │ │ │ │ │ │ │ ├── Checkbox.php │ │ │ │ │ │ │ │ │ │ ├── Date.php │ │ │ │ │ │ │ │ │ │ ├── DateTime.php │ │ │ │ │ │ │ │ │ │ ├── DropDown.php │ │ │ │ │ │ │ │ │ │ ├── Field.php │ │ │ │ │ │ │ │ │ │ ├── File.php │ │ │ │ │ │ │ │ │ │ ├── MultipleSelect.php │ │ │ │ │ │ │ │ │ │ ├── RadioButtons.php │ │ │ │ │ │ │ │ │ │ └── Time.php │ │ │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ │ │ └── File │ │ │ │ │ │ │ │ │ └── ValidatorFileMock.php │ │ │ │ │ │ │ └── Price │ │ │ │ │ │ │ │ └── GetPriceIndexDataByProductId.php │ │ │ │ │ │ │ └── ProductLayoutUpdateManager.php │ │ │ │ │ │ ├── Cms │ │ │ │ │ │ └── Model │ │ │ │ │ │ │ └── CustomLayoutManager.php │ │ │ │ │ │ ├── Config.php │ │ │ │ │ │ ├── Config │ │ │ │ │ │ └── Model │ │ │ │ │ │ │ └── ConfigStorage.php │ │ │ │ │ │ ├── ConfigurableProduct │ │ │ │ │ │ ├── Block │ │ │ │ │ │ │ └── CustomOptions │ │ │ │ │ │ │ │ ├── DateGroupDataProvider.php │ │ │ │ │ │ │ │ ├── FileGroupDataProvider.php │ │ │ │ │ │ │ │ ├── SelectGroupDataProvider.php │ │ │ │ │ │ │ │ └── TextGroupDataProvider.php │ │ │ │ │ │ └── Model │ │ │ │ │ │ │ └── DeleteConfigurableProduct.php │ │ │ │ │ │ ├── Console │ │ │ │ │ │ └── CliProxy.php │ │ │ │ │ │ ├── CookieManager.php │ │ │ │ │ │ ├── Core │ │ │ │ │ │ └── Version │ │ │ │ │ │ │ └── View.php │ │ │ │ │ │ ├── Customer │ │ │ │ │ │ └── Model │ │ │ │ │ │ │ └── DeleteCustomer.php │ │ │ │ │ │ ├── Db │ │ │ │ │ │ ├── AbstractDb.php │ │ │ │ │ │ ├── Adapter │ │ │ │ │ │ │ ├── Mysql.php │ │ │ │ │ │ │ └── TransactionInterface.php │ │ │ │ │ │ ├── ConnectionAdapter.php │ │ │ │ │ │ ├── Mysql.php │ │ │ │ │ │ ├── Sequence.php │ │ │ │ │ │ └── Sequence │ │ │ │ │ │ │ └── Builder.php │ │ │ │ │ │ ├── Directory │ │ │ │ │ │ └── Model │ │ │ │ │ │ │ ├── GetRegionIdByName.php │ │ │ │ │ │ │ └── RemoveCurrencyRateByCode.php │ │ │ │ │ │ ├── Downloadable │ │ │ │ │ │ └── Model │ │ │ │ │ │ │ └── RemoveLinkPurchasedByOrderIncrementId.php │ │ │ │ │ │ ├── Eav │ │ │ │ │ │ └── Model │ │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ │ └── DataProvider │ │ │ │ │ │ │ │ ├── AbstractAttributeDataWithOptions.php │ │ │ │ │ │ │ │ ├── AbstractBaseAttributeData.php │ │ │ │ │ │ │ │ ├── Date.php │ │ │ │ │ │ │ │ ├── DateTime.php │ │ │ │ │ │ │ │ ├── DropDown.php │ │ │ │ │ │ │ │ ├── MultipleSelect.php │ │ │ │ │ │ │ │ ├── Text.php │ │ │ │ │ │ │ │ ├── TextArea.php │ │ │ │ │ │ │ │ ├── TextEditor.php │ │ │ │ │ │ │ │ └── YesNo.php │ │ │ │ │ │ │ ├── GetAttributeGroupByName.php │ │ │ │ │ │ │ ├── GetAttributeSetByName.php │ │ │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ │ └── GetEntityIdByAttributeId.php │ │ │ │ │ │ ├── Entity.php │ │ │ │ │ │ ├── ErrorLog │ │ │ │ │ │ ├── Listener.php │ │ │ │ │ │ └── Logger.php │ │ │ │ │ │ ├── Event │ │ │ │ │ │ ├── Magento.php │ │ │ │ │ │ ├── Param │ │ │ │ │ │ │ └── Transaction.php │ │ │ │ │ │ ├── PhpUnit.php │ │ │ │ │ │ └── Transaction.php │ │ │ │ │ │ ├── EventManager.php │ │ │ │ │ │ ├── HTTP │ │ │ │ │ │ ├── AsyncClientInterfaceMock.php │ │ │ │ │ │ └── MockDeferredResponse.php │ │ │ │ │ │ ├── Helper │ │ │ │ │ │ ├── Amqp.php │ │ │ │ │ │ ├── Api.php │ │ │ │ │ │ ├── Bootstrap.php │ │ │ │ │ │ ├── CacheCleaner.php │ │ │ │ │ │ ├── Config.php │ │ │ │ │ │ ├── Curl.php │ │ │ │ │ │ ├── Eav.php │ │ │ │ │ │ ├── Factory.php │ │ │ │ │ │ ├── Memory.php │ │ │ │ │ │ └── Xpath.php │ │ │ │ │ │ ├── Indexer │ │ │ │ │ │ └── TestCase.php │ │ │ │ │ │ ├── Interception │ │ │ │ │ │ └── PluginList.php │ │ │ │ │ │ ├── Isolation │ │ │ │ │ │ ├── AppConfig.php │ │ │ │ │ │ ├── DeploymentConfig.php │ │ │ │ │ │ └── WorkingDirectory.php │ │ │ │ │ │ ├── Listener │ │ │ │ │ │ └── ExtededTestdox.php │ │ │ │ │ │ ├── Lock │ │ │ │ │ │ └── Backend │ │ │ │ │ │ │ └── DummyLocker.php │ │ │ │ │ │ ├── Mail │ │ │ │ │ │ ├── Template │ │ │ │ │ │ │ └── TransportBuilderMock.php │ │ │ │ │ │ └── TransportInterfaceMock.php │ │ │ │ │ │ ├── MemoryLimit.php │ │ │ │ │ │ ├── MessageQueue │ │ │ │ │ │ ├── EnvironmentPreconditionException.php │ │ │ │ │ │ ├── PreconditionFailedException.php │ │ │ │ │ │ └── PublisherConsumerController.php │ │ │ │ │ │ ├── MysqlMq │ │ │ │ │ │ └── DeleteTopicRelatedMessages.php │ │ │ │ │ │ ├── ObjectManager.php │ │ │ │ │ │ ├── ObjectManager │ │ │ │ │ │ ├── Config.php │ │ │ │ │ │ └── Configurator.php │ │ │ │ │ │ ├── ObjectManagerFactory.php │ │ │ │ │ │ ├── Profiler │ │ │ │ │ │ └── OutputBamboo.php │ │ │ │ │ │ ├── Quote │ │ │ │ │ │ └── Model │ │ │ │ │ │ │ └── GetQuoteByReservedOrderId.php │ │ │ │ │ │ ├── Request.php │ │ │ │ │ │ ├── Response.php │ │ │ │ │ │ ├── SalesRule │ │ │ │ │ │ └── Model │ │ │ │ │ │ │ └── GetSalesRuleByName.php │ │ │ │ │ │ ├── SendFriend │ │ │ │ │ │ └── Model │ │ │ │ │ │ │ └── DeleteLogRowsByIp.php │ │ │ │ │ │ ├── Serialize │ │ │ │ │ │ └── Serializer.php │ │ │ │ │ │ ├── Session │ │ │ │ │ │ └── SessionStartChecker.php │ │ │ │ │ │ ├── SkippableInterface.php │ │ │ │ │ │ ├── SkippableTrait.php │ │ │ │ │ │ ├── Store │ │ │ │ │ │ ├── ExecuteInStoreContext.php │ │ │ │ │ │ └── StoreManager.php │ │ │ │ │ │ ├── SuiteLoader.php │ │ │ │ │ │ ├── Swatches │ │ │ │ │ │ └── Model │ │ │ │ │ │ │ └── Attribute │ │ │ │ │ │ │ └── DataProvider │ │ │ │ │ │ │ ├── AbstractSwatchAttributeData.php │ │ │ │ │ │ │ ├── TextSwatch.php │ │ │ │ │ │ │ └── VisualSwatch.php │ │ │ │ │ │ ├── TestCase │ │ │ │ │ │ ├── AbstractBackendController.php │ │ │ │ │ │ ├── AbstractConfigFiles.php │ │ │ │ │ │ ├── AbstractController.php │ │ │ │ │ │ └── AbstractIntegrity.php │ │ │ │ │ │ ├── View │ │ │ │ │ │ └── Layout.php │ │ │ │ │ │ ├── Weee │ │ │ │ │ │ └── Model │ │ │ │ │ │ │ └── Attribute │ │ │ │ │ │ │ └── DataProvider │ │ │ │ │ │ │ └── FixedProductTax.php │ │ │ │ │ │ ├── Wishlist │ │ │ │ │ │ └── Model │ │ │ │ │ │ │ └── GetWishlistByCustomerId.php │ │ │ │ │ │ └── Workaround │ │ │ │ │ │ ├── Cleanup │ │ │ │ │ │ ├── StaticProperties.php │ │ │ │ │ │ └── TestCaseProperties.php │ │ │ │ │ │ ├── Override │ │ │ │ │ │ ├── Config.php │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ ├── Converter.php │ │ │ │ │ │ │ ├── Dom.php │ │ │ │ │ │ │ ├── FileCollector.php │ │ │ │ │ │ │ ├── FileResolver.php │ │ │ │ │ │ │ ├── RelationsCollector.php │ │ │ │ │ │ │ ├── SchemaLocator.php │ │ │ │ │ │ │ └── ValidationState.php │ │ │ │ │ │ ├── ConfigInterface.php │ │ │ │ │ │ ├── Fixture │ │ │ │ │ │ │ ├── Applier │ │ │ │ │ │ │ │ ├── AdminConfigFixture.php │ │ │ │ │ │ │ │ ├── ApplierInterface.php │ │ │ │ │ │ │ │ ├── Base.php │ │ │ │ │ │ │ │ ├── ConfigFixture.php │ │ │ │ │ │ │ │ └── DataFixture.php │ │ │ │ │ │ │ ├── Resolver.php │ │ │ │ │ │ │ ├── Resolver │ │ │ │ │ │ │ │ └── TestSetter.php │ │ │ │ │ │ │ └── ResolverInterface.php │ │ │ │ │ │ └── WrapperGenerator.php │ │ │ │ │ │ ├── Segfault.php │ │ │ │ │ │ └── etc │ │ │ │ │ │ └── overrides.xsd │ │ │ │ ├── autoload.php │ │ │ │ ├── bootstrap.php │ │ │ │ ├── deployTestModules.php │ │ │ │ └── tests │ │ │ │ │ └── unit │ │ │ │ │ ├── framework │ │ │ │ │ └── bootstrap.php │ │ │ │ │ ├── phpunit.xml.dist │ │ │ │ │ └── testsuite │ │ │ │ │ └── Magento │ │ │ │ │ └── Test │ │ │ │ │ ├── Annotation │ │ │ │ │ ├── AdminConfigFixtureTest.php │ │ │ │ │ ├── AppAreaTest.php │ │ │ │ │ ├── AppIsolationTest.php │ │ │ │ │ ├── ComponentRegistrarFixtureTest.php │ │ │ │ │ ├── ConfigFixtureTest.php │ │ │ │ │ ├── DataFixtureTest.php │ │ │ │ │ ├── DbIsolationTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── a │ │ │ │ │ │ │ └── aa │ │ │ │ │ │ │ │ ├── aaa │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ ├── b │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ └── sample_fixture_two_rollback.php │ │ │ │ │ ├── App │ │ │ │ │ └── ConfigTest.php │ │ │ │ │ ├── ApplicationTest.php │ │ │ │ │ ├── Bootstrap │ │ │ │ │ ├── DocBlockTest.php │ │ │ │ │ ├── MemoryTest.php │ │ │ │ │ ├── ProfilerTest.php │ │ │ │ │ ├── SettingsTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── 0 │ │ │ │ │ │ ├── 1.xml │ │ │ │ │ │ ├── 1.xml.dist │ │ │ │ │ │ ├── 2.xml │ │ │ │ │ │ ├── 3.xml.dist │ │ │ │ │ │ ├── 4.php │ │ │ │ │ │ └── metrics.php │ │ │ │ │ ├── BootstrapTest.php │ │ │ │ │ ├── Db │ │ │ │ │ └── Adapter │ │ │ │ │ │ └── TransactionInterfaceTest.php │ │ │ │ │ ├── EntityTest.php │ │ │ │ │ ├── Event │ │ │ │ │ ├── MagentoTest.php │ │ │ │ │ ├── Param │ │ │ │ │ │ └── TransactionTest.php │ │ │ │ │ ├── PhpUnitTest.php │ │ │ │ │ └── TransactionTest.php │ │ │ │ │ ├── EventManagerTest.php │ │ │ │ │ ├── Helper │ │ │ │ │ ├── BootstrapTest.php │ │ │ │ │ ├── FactoryTest.php │ │ │ │ │ └── MemoryTest.php │ │ │ │ │ ├── Isolation │ │ │ │ │ ├── AppConfigTest.php │ │ │ │ │ └── WorkingDirectoryTest.php │ │ │ │ │ ├── MemoryLimitTest.php │ │ │ │ │ ├── ObjectManagerTest.php │ │ │ │ │ ├── Profiler │ │ │ │ │ ├── OutputBambooTest.php │ │ │ │ │ └── OutputBambooTestFilter.php │ │ │ │ │ ├── RequestTest.php │ │ │ │ │ ├── TestCase │ │ │ │ │ └── ControllerAbstractTest.php │ │ │ │ │ └── Workaround │ │ │ │ │ ├── Cleanup │ │ │ │ │ ├── TestCasePropertiesTest.php │ │ │ │ │ └── TestCasePropertiesTest │ │ │ │ │ │ └── DummyTestCase.php │ │ │ │ │ └── Override │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ └── Fixture │ │ │ │ │ ├── Applier │ │ │ │ │ ├── AdminConfigFixtureTest.php │ │ │ │ │ ├── ConfigFixtureTest.php │ │ │ │ │ └── DataFixtureTest.php │ │ │ │ │ ├── Resolver │ │ │ │ │ └── TestSetterTest.php │ │ │ │ │ └── ResolverTest.php │ │ │ ├── phpunit.xml.dist │ │ │ ├── testsuite │ │ │ │ └── Magento │ │ │ │ │ ├── AdminNotification │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── Notification │ │ │ │ │ │ │ ├── MarkAsReadTest.php │ │ │ │ │ │ │ ├── MassMarkAsReadTest.php │ │ │ │ │ │ │ ├── MassRemoveTest.php │ │ │ │ │ │ │ └── RemoveTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ │ └── Inbox │ │ │ │ │ │ │ └── Collection │ │ │ │ │ │ │ └── CriticalTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ └── notifications.php │ │ │ │ │ ├── AdvancedPricingImportExport │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Export │ │ │ │ │ │ │ └── AdvancedPricingTest.php │ │ │ │ │ │ └── Import │ │ │ │ │ │ │ ├── AdvancedPricingTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── import_advanced_pricing.csv │ │ │ │ │ └── _files │ │ │ │ │ │ ├── create_products.php │ │ │ │ │ │ ├── create_products_rollback.php │ │ │ │ │ │ ├── product_with_second_website.php │ │ │ │ │ │ └── product_with_second_website_rollback.php │ │ │ │ │ ├── AdvancedSearch │ │ │ │ │ └── Block │ │ │ │ │ │ └── SuggestionsTest.php │ │ │ │ │ ├── Analytics │ │ │ │ │ ├── Block │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── System │ │ │ │ │ │ │ └── Config │ │ │ │ │ │ │ └── CollectionTimeLabelTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── Reports │ │ │ │ │ │ │ └── ShowTest.php │ │ │ │ │ ├── Cron │ │ │ │ │ │ ├── CollectDataTest.php │ │ │ │ │ │ └── UpdateTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ └── Backend │ │ │ │ │ │ │ │ └── EnabledTest.php │ │ │ │ │ │ ├── Connector │ │ │ │ │ │ │ └── Http │ │ │ │ │ │ │ │ └── ReSignUpResponseResolverTest.php │ │ │ │ │ │ ├── Plugin │ │ │ │ │ │ │ └── BaseUrlConfigPluginTest.php │ │ │ │ │ │ └── ReportUrlProviderTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── create_link.php │ │ │ │ │ │ ├── enabled_subscription_with_invalid_token.php │ │ │ │ │ │ └── enabled_subscription_with_invalid_token_rollback.php │ │ │ │ │ ├── AsynchronousOperations │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── BulkManagementTest.php │ │ │ │ │ │ ├── BulkNotificationManagementTest.php │ │ │ │ │ │ ├── BulkStatusTest.php │ │ │ │ │ │ ├── MassScheduleTest.php │ │ │ │ │ │ ├── OperationManagementTest.php │ │ │ │ │ │ └── SaveMultipleOperationsTest.php │ │ │ │ │ ├── Ui │ │ │ │ │ │ └── Component │ │ │ │ │ │ │ └── DataProvider │ │ │ │ │ │ │ ├── Operation │ │ │ │ │ │ │ ├── Failed │ │ │ │ │ │ │ │ └── SearchResultTest.php │ │ │ │ │ │ │ └── Retriable │ │ │ │ │ │ │ │ └── SearchResultTest.php │ │ │ │ │ │ │ └── SearchResultTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── acknowledged_bulk.php │ │ │ │ │ │ ├── acknowledged_bulk_rollback.php │ │ │ │ │ │ ├── bulk.php │ │ │ │ │ │ ├── bulk_rollback.php │ │ │ │ │ │ ├── operation_searchable.php │ │ │ │ │ │ └── operation_searchable_rollback.php │ │ │ │ │ ├── Authorization │ │ │ │ │ └── Model │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ ├── Role │ │ │ │ │ │ │ ├── CollectionTest.php │ │ │ │ │ │ │ └── Grid │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ ├── RoleTest.php │ │ │ │ │ │ └── Rules │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ ├── RoleTest.php │ │ │ │ │ │ └── RulesTest.php │ │ │ │ │ ├── Backend │ │ │ │ │ ├── App │ │ │ │ │ │ ├── AbstractActionTest.php │ │ │ │ │ │ ├── Request │ │ │ │ │ │ │ └── BackendValidatorTest.php │ │ │ │ │ │ └── RouterTest.php │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── Dashboard │ │ │ │ │ │ │ ├── Chart │ │ │ │ │ │ │ │ └── PeriodTest.php │ │ │ │ │ │ │ ├── Orders │ │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ │ └── Products │ │ │ │ │ │ │ │ └── ViewedTest.php │ │ │ │ │ │ ├── MenuTest.php │ │ │ │ │ │ ├── Page │ │ │ │ │ │ │ ├── FooterTest.php │ │ │ │ │ │ │ └── HeaderTest.php │ │ │ │ │ │ ├── System │ │ │ │ │ │ │ ├── Account │ │ │ │ │ │ │ │ └── Edit │ │ │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ │ │ ├── Design │ │ │ │ │ │ │ │ └── Edit │ │ │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ │ │ └── GeneralTest.php │ │ │ │ │ │ │ └── Store │ │ │ │ │ │ │ │ ├── DeleteTest.php │ │ │ │ │ │ │ │ ├── Edit │ │ │ │ │ │ │ │ └── Form │ │ │ │ │ │ │ │ │ ├── GroupTest.php │ │ │ │ │ │ │ │ │ ├── StoreTest.php │ │ │ │ │ │ │ │ │ └── WebsiteTest.php │ │ │ │ │ │ │ │ └── EditTest.php │ │ │ │ │ │ ├── TemplateTest.php │ │ │ │ │ │ ├── Widget │ │ │ │ │ │ │ ├── Button │ │ │ │ │ │ │ │ └── SplitButtonTest.php │ │ │ │ │ │ │ ├── ButtonTest.php │ │ │ │ │ │ │ ├── ContainerTest.php │ │ │ │ │ │ │ ├── Form │ │ │ │ │ │ │ │ └── ContainerTest.php │ │ │ │ │ │ │ ├── FormTest.php │ │ │ │ │ │ │ ├── Grid │ │ │ │ │ │ │ │ ├── Column │ │ │ │ │ │ │ │ │ └── Renderer │ │ │ │ │ │ │ │ │ │ └── TextTest.php │ │ │ │ │ │ │ │ ├── ColumnSetTest.php │ │ │ │ │ │ │ │ ├── ContainerTest.php │ │ │ │ │ │ │ │ ├── ExtendedTest.php │ │ │ │ │ │ │ │ ├── ItemTest.php │ │ │ │ │ │ │ │ ├── Massaction │ │ │ │ │ │ │ │ │ └── AdditionalTest.php │ │ │ │ │ │ │ │ └── MassactionTest.php │ │ │ │ │ │ │ ├── GridTest.php │ │ │ │ │ │ │ └── TabsTest.php │ │ │ │ │ │ ├── WidgetTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── design │ │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ │ │ └── Magento │ │ │ │ │ │ │ │ └── test_default │ │ │ │ │ │ │ │ ├── Magento_Backend │ │ │ │ │ │ │ │ └── layout │ │ │ │ │ │ │ │ │ └── layout_test_grid_handle.xml │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ ├── grid_sort_asc.gif │ │ │ │ │ │ │ │ ├── grid_sort_desc.gif │ │ │ │ │ │ │ │ ├── grid_th_bg.gif │ │ │ │ │ │ │ │ ├── grid_th_onclick_bg.gif │ │ │ │ │ │ │ │ ├── pager_arrow_left.gif │ │ │ │ │ │ │ │ ├── pager_arrow_left_off.gif │ │ │ │ │ │ │ │ ├── pager_arrow_right.gif │ │ │ │ │ │ │ │ └── pager_arrow_right_off.gif │ │ │ │ │ │ │ ├── form_key_disabled.php │ │ │ │ │ │ │ ├── form_key_disabled_rollback.php │ │ │ │ │ │ │ └── menu │ │ │ │ │ │ │ └── Magento │ │ │ │ │ │ │ └── Backend │ │ │ │ │ │ │ └── etc │ │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ │ └── menu.xml │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ ├── AuthTest.php │ │ │ │ │ │ │ ├── Cache │ │ │ │ │ │ │ ├── CleanStaticFilesTest.php │ │ │ │ │ │ │ └── MassActionTest.php │ │ │ │ │ │ │ ├── CacheTest.php │ │ │ │ │ │ │ ├── ConsecutiveCallTest.php │ │ │ │ │ │ │ ├── Dashboard │ │ │ │ │ │ │ ├── AjaxBlockTest.php │ │ │ │ │ │ │ └── ProductsViewedTest.php │ │ │ │ │ │ │ ├── IndexTest.php │ │ │ │ │ │ │ ├── System │ │ │ │ │ │ │ ├── AccountTest.php │ │ │ │ │ │ │ ├── DesignTest.php │ │ │ │ │ │ │ └── StoreTest.php │ │ │ │ │ │ │ └── UrlRewriteTest.php │ │ │ │ │ ├── Helper │ │ │ │ │ │ └── DataTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Auth │ │ │ │ │ │ │ └── SessionTest.php │ │ │ │ │ │ ├── AuthTest.php │ │ │ │ │ │ ├── Dashboard │ │ │ │ │ │ │ └── ChartTest.php │ │ │ │ │ │ ├── Locale │ │ │ │ │ │ │ └── ResolverTest.php │ │ │ │ │ │ ├── MenuTest.php │ │ │ │ │ │ ├── Search │ │ │ │ │ │ │ ├── AuthorizationMock.php │ │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ │ ├── CustomerTest.php │ │ │ │ │ │ │ ├── OrderTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ └── test_config.xml │ │ │ │ │ │ ├── Session │ │ │ │ │ │ │ ├── AdminConfigTest.php │ │ │ │ │ │ │ └── QuoteTest.php │ │ │ │ │ │ ├── SessionTest.php │ │ │ │ │ │ ├── Translate │ │ │ │ │ │ │ └── InlineTest.php │ │ │ │ │ │ └── UrlTest.php │ │ │ │ │ ├── _files │ │ │ │ │ │ ├── allowed_countries_fr.php │ │ │ │ │ │ └── allowed_countries_fr_rollback.php │ │ │ │ │ └── controllers │ │ │ │ │ │ └── _files │ │ │ │ │ │ └── cache │ │ │ │ │ │ ├── all_types_invalidated.php │ │ │ │ │ │ ├── all_types_invalidated_rollback.php │ │ │ │ │ │ ├── application_cache.php │ │ │ │ │ │ ├── application_cache_rollback.php │ │ │ │ │ │ ├── empty_storage.php │ │ │ │ │ │ ├── non_application_cache.php │ │ │ │ │ │ └── non_application_cache_rollback.php │ │ │ │ │ ├── Bundle │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ │ └── Catalog │ │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ │ └── Edit │ │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ │ └── Bundle │ │ │ │ │ │ │ │ └── Option │ │ │ │ │ │ │ │ ├── Search │ │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ │ │ └── SearchTest.php │ │ │ │ │ │ └── Catalog │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ └── View │ │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ ├── AbstractBundleOptionsViewTest.php │ │ │ │ │ │ │ ├── BundleProductPriceTest.php │ │ │ │ │ │ │ ├── BundleTest.php │ │ │ │ │ │ │ ├── CheckboxOptionViewTest.php │ │ │ │ │ │ │ ├── DropDownOptionViewTest.php │ │ │ │ │ │ │ ├── MultiselectOptionViewTest.php │ │ │ │ │ │ │ └── RadioOptionViewTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ │ ├── Bundle │ │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ │ │ └── Edit │ │ │ │ │ │ │ │ │ └── MassDeleteTest.php │ │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ │ ├── AbstractBundleProductSaveTest.php │ │ │ │ │ │ │ │ ├── DynamicBundleProductTest.php │ │ │ │ │ │ │ │ └── FixedBundleProductTest.php │ │ │ │ │ │ │ └── ProductTest.php │ │ │ │ │ │ └── ProductTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Category │ │ │ │ │ │ │ └── ProductIndexerTest.php │ │ │ │ │ │ ├── OptionRepositoryTest.php │ │ │ │ │ │ ├── Plugin │ │ │ │ │ │ │ └── Frontend │ │ │ │ │ │ │ │ ├── ProductIdentitiesExtenderTest.php │ │ │ │ │ │ │ │ └── ProductTest.php │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ ├── BundlePriceAbstract.php │ │ │ │ │ │ │ ├── DynamicBundlePriceCalculatorTest.php │ │ │ │ │ │ │ ├── DynamicBundlePriceCalculatorWithDimensionTest.php │ │ │ │ │ │ │ ├── DynamicBundleWithCatalogPriceRuleCalculatorTest.php │ │ │ │ │ │ │ ├── DynamicBundleWithSpecialPriceCalculatorTest.php │ │ │ │ │ │ │ ├── DynamicBundleWithTierPriceCalculatorTest.php │ │ │ │ │ │ │ ├── FixedBundlePriceCalculatorTest.php │ │ │ │ │ │ │ ├── FixedBundlePriceCalculatorWithDimensionTest.php │ │ │ │ │ │ │ ├── FixedBundleWithCatalogPriceRuleCalculatorTest.php │ │ │ │ │ │ │ ├── FixedBundleWithSpecialPriceCalculatorTest.php │ │ │ │ │ │ │ ├── FixedBundleWithTierPriceCalculatorTest.php │ │ │ │ │ │ │ ├── IsSaleableTest.php │ │ │ │ │ │ │ ├── OptionListTest.php │ │ │ │ │ │ │ ├── PriceTest.php │ │ │ │ │ │ │ ├── PriceWithDimensionTest.php │ │ │ │ │ │ │ ├── SaveHandlerTest.php │ │ │ │ │ │ │ └── TypeTest.php │ │ │ │ │ │ ├── ProductTest.php │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ │ └── Indexer │ │ │ │ │ │ │ │ ├── PriceTest.php │ │ │ │ │ │ │ │ └── StockTest.php │ │ │ │ │ │ └── Sales │ │ │ │ │ │ │ └── AdminOrder │ │ │ │ │ │ │ └── ReorderTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── PriceCalculator │ │ │ │ │ │ ├── dynamic_bundle_product.php │ │ │ │ │ │ ├── dynamic_bundle_product_rollback.php │ │ │ │ │ │ ├── dynamic_bundle_product_with_catalog_rule.php │ │ │ │ │ │ ├── dynamic_bundle_product_with_catalog_rule_rollback.php │ │ │ │ │ │ ├── dynamic_bundle_product_with_special_price.php │ │ │ │ │ │ ├── dynamic_bundle_product_with_special_price_rollback.php │ │ │ │ │ │ ├── fixed_bundle_product.php │ │ │ │ │ │ ├── fixed_bundle_product_rollback.php │ │ │ │ │ │ ├── fixed_bundle_product_with_catalog_rule.php │ │ │ │ │ │ ├── fixed_bundle_product_with_catalog_rule_rollback.php │ │ │ │ │ │ ├── fixed_bundle_product_with_special_price.php │ │ │ │ │ │ └── fixed_bundle_product_with_special_price_rollback.php │ │ │ │ │ │ ├── bundle_product_checkbox_options.php │ │ │ │ │ │ ├── bundle_product_checkbox_options_rollback.php │ │ │ │ │ │ ├── bundle_product_checkbox_required_option.php │ │ │ │ │ │ ├── bundle_product_checkbox_required_option_rollback.php │ │ │ │ │ │ ├── bundle_product_checkbox_required_options.php │ │ │ │ │ │ ├── bundle_product_checkbox_required_options_rollback.php │ │ │ │ │ │ ├── bundle_product_dropdown_options.php │ │ │ │ │ │ ├── bundle_product_dropdown_options_rollback.php │ │ │ │ │ │ ├── bundle_product_dropdown_required_options.php │ │ │ │ │ │ ├── bundle_product_dropdown_required_options_rollback.php │ │ │ │ │ │ ├── bundle_product_multiselect_options.php │ │ │ │ │ │ ├── bundle_product_multiselect_options_rollback.php │ │ │ │ │ │ ├── bundle_product_multiselect_required_option.php │ │ │ │ │ │ ├── bundle_product_multiselect_required_option_rollback.php │ │ │ │ │ │ ├── bundle_product_multiselect_required_options.php │ │ │ │ │ │ ├── bundle_product_multiselect_required_options_rollback.php │ │ │ │ │ │ ├── bundle_product_radio_options.php │ │ │ │ │ │ ├── bundle_product_radio_options_rollback.php │ │ │ │ │ │ ├── bundle_product_radio_required_option.php │ │ │ │ │ │ ├── bundle_product_radio_required_option_rollback.php │ │ │ │ │ │ ├── bundle_product_radio_required_options.php │ │ │ │ │ │ ├── bundle_product_radio_required_options_rollback.php │ │ │ │ │ │ ├── bundle_product_two_dropdown_options.php │ │ │ │ │ │ ├── bundle_product_two_dropdown_options_rollback.php │ │ │ │ │ │ ├── bundle_product_with_dynamic_price.php │ │ │ │ │ │ ├── bundle_product_with_dynamic_price_rollback.php │ │ │ │ │ │ ├── bundle_product_with_not_visible_children.php │ │ │ │ │ │ ├── bundle_product_with_not_visible_children_rollback.php │ │ │ │ │ │ ├── dynamic_and_fixed_bundle_products_in_category.php │ │ │ │ │ │ ├── dynamic_and_fixed_bundle_products_in_category_rollback.php │ │ │ │ │ │ ├── dynamic_bundle_product_multiselect_option.php │ │ │ │ │ │ ├── dynamic_bundle_product_multiselect_option_rollback.php │ │ │ │ │ │ ├── dynamic_bundle_product_with_catalog_rule.php │ │ │ │ │ │ ├── dynamic_bundle_product_with_catalog_rule_rollback.php │ │ │ │ │ │ ├── dynamic_bundle_product_with_multiple_options.php │ │ │ │ │ │ ├── dynamic_bundle_product_with_multiple_options_rollback.php │ │ │ │ │ │ ├── dynamic_bundle_product_with_special_price.php │ │ │ │ │ │ ├── dynamic_bundle_product_with_special_price_rollback.php │ │ │ │ │ │ ├── dynamic_bundle_product_with_tier_price.php │ │ │ │ │ │ ├── dynamic_bundle_product_with_tier_price_rollback.php │ │ │ │ │ │ ├── dynamic_bundle_product_without_discounts.php │ │ │ │ │ │ ├── dynamic_bundle_product_without_discounts_rollback.php │ │ │ │ │ │ ├── empty_bundle_product.php │ │ │ │ │ │ ├── empty_bundle_product_rollback.php │ │ │ │ │ │ ├── fixed_bundle_product_with_special_price.php │ │ │ │ │ │ ├── fixed_bundle_product_with_special_price_rollback.php │ │ │ │ │ │ ├── fixed_bundle_product_with_tier_price.php │ │ │ │ │ │ ├── fixed_bundle_product_with_tier_price_rollback.php │ │ │ │ │ │ ├── fixed_bundle_product_without_discounts.php │ │ │ │ │ │ ├── fixed_bundle_product_without_discounts_rollback.php │ │ │ │ │ │ ├── issaleable_product.php │ │ │ │ │ │ ├── issaleable_product_rollback.php │ │ │ │ │ │ ├── multiple_products.php │ │ │ │ │ │ ├── multiple_products_rollback.php │ │ │ │ │ │ ├── order_item_with_bundle_and_options.php │ │ │ │ │ │ ├── order_item_with_bundle_and_options_rollback.php │ │ │ │ │ │ ├── order_items_simple_and_bundle.php │ │ │ │ │ │ ├── order_items_simple_and_bundle_rollback.php │ │ │ │ │ │ ├── order_with_2_bundles_shipping_separately.php │ │ │ │ │ │ ├── order_with_2_bundles_shipping_separately_rollback.php │ │ │ │ │ │ ├── order_with_bundle_shipped_separately.php │ │ │ │ │ │ ├── order_with_bundle_shipped_separately_rollback.php │ │ │ │ │ │ ├── order_with_bundle_shipped_together.php │ │ │ │ │ │ ├── order_with_bundle_shipped_together_rollback.php │ │ │ │ │ │ ├── product.php │ │ │ │ │ │ ├── product_1.php │ │ │ │ │ │ ├── product_1_rollback.php │ │ │ │ │ │ ├── product_in_category.php │ │ │ │ │ │ ├── product_in_category_rollback.php │ │ │ │ │ │ ├── product_rollback.php │ │ │ │ │ │ ├── product_with_multiple_options.php │ │ │ │ │ │ ├── product_with_multiple_options_1.php │ │ │ │ │ │ ├── product_with_multiple_options_1_rollback.php │ │ │ │ │ │ ├── product_with_multiple_options_and_custom_quantity.php │ │ │ │ │ │ ├── product_with_multiple_options_and_custom_quantity_rollback.php │ │ │ │ │ │ ├── product_with_multiple_options_radio_select.php │ │ │ │ │ │ ├── product_with_multiple_options_radio_select_rollback.php │ │ │ │ │ │ ├── product_with_multiple_options_rollback.php │ │ │ │ │ │ ├── product_with_simple_tier_pricing.php │ │ │ │ │ │ ├── product_with_simple_tier_pricing_rollback.php │ │ │ │ │ │ ├── product_with_tier_pricing.php │ │ │ │ │ │ ├── product_with_tier_pricing_rollback.php │ │ │ │ │ │ ├── quote_with_bundle_and_options.php │ │ │ │ │ │ ├── quote_with_bundle_and_options_rollback.php │ │ │ │ │ │ ├── two_bundle_products_with_separate_shipping.php │ │ │ │ │ │ └── two_bundle_products_with_separate_shipping_rollback.php │ │ │ │ │ ├── BundleImportExport │ │ │ │ │ └── Model │ │ │ │ │ │ ├── BundleTest.php │ │ │ │ │ │ ├── Export │ │ │ │ │ │ └── RowCustomizerTest.php │ │ │ │ │ │ └── Import │ │ │ │ │ │ ├── Product │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ └── BundleTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ ├── import_bundle.csv │ │ │ │ │ │ └── import_bundle_multiple_store_views.csv │ │ │ │ │ ├── Captcha │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ │ └── Captcha │ │ │ │ │ │ │ │ └── DefaultCaptchaTest.php │ │ │ │ │ │ └── Captcha │ │ │ │ │ │ │ └── DefaultTest.php │ │ │ │ │ ├── Observer │ │ │ │ │ │ ├── CaseBackendLoginActionWithInvalidCaptchaReturnsErrorTest.php │ │ │ │ │ │ ├── CaseCaptchaIsRequiredAfterFailedLoginAttemptsTest.php │ │ │ │ │ │ ├── CaseCheckOnFrontendUnsuccessfulMessageWhenCaptchaFailedTest.php │ │ │ │ │ │ ├── CaseCheckUnsuccessfulMessageWhenCaptchaFailedTest.php │ │ │ │ │ │ ├── CaseCheckUserForgotPasswordBackendWhenCaptchaFailedTest.php │ │ │ │ │ │ ├── ResetAttemptForBackendObserverTest.php │ │ │ │ │ │ ├── ResetAttemptForFrontendAccountEditObserverTest.php │ │ │ │ │ │ └── ResetAttemptForFrontendObserverTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── dummy_user.php │ │ │ │ │ │ ├── failed_logins_backend.php │ │ │ │ │ │ ├── failed_logins_backend_rollback.php │ │ │ │ │ │ ├── failed_logins_frontend.php │ │ │ │ │ │ └── failed_logins_frontend_rollback.php │ │ │ │ │ ├── Catalog │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ │ ├── Category │ │ │ │ │ │ │ │ ├── Checkboxes │ │ │ │ │ │ │ │ │ └── TreeTest.php │ │ │ │ │ │ │ │ └── TreeTest.php │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ │ │ ├── Edit │ │ │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ │ │ │ └── FrontTest.php │ │ │ │ │ │ │ │ └── Set │ │ │ │ │ │ │ │ │ └── Toolbar │ │ │ │ │ │ │ │ │ └── AddTest.php │ │ │ │ │ │ │ │ ├── Composite │ │ │ │ │ │ │ │ ├── Fieldset │ │ │ │ │ │ │ │ │ ├── OptionsTest.php │ │ │ │ │ │ │ │ │ └── QtyTest.php │ │ │ │ │ │ │ │ └── FieldsetTest.php │ │ │ │ │ │ │ │ ├── Edit │ │ │ │ │ │ │ │ ├── JsTest.php │ │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ │ │ └── Options │ │ │ │ │ │ │ │ │ ├── OptionTest.php │ │ │ │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ │ │ └── SelectTest.php │ │ │ │ │ │ │ │ ├── Helper │ │ │ │ │ │ │ │ └── Form │ │ │ │ │ │ │ │ │ ├── CategoryTest.php │ │ │ │ │ │ │ │ │ ├── Gallery │ │ │ │ │ │ │ │ │ └── ContentTest.php │ │ │ │ │ │ │ │ │ └── WeightTest.php │ │ │ │ │ │ │ │ └── Options │ │ │ │ │ │ │ │ └── AjaxTest.php │ │ │ │ │ │ ├── BreadcrumbsTest.php │ │ │ │ │ │ ├── Category │ │ │ │ │ │ │ ├── TitleTest.php │ │ │ │ │ │ │ ├── TopMenuTest.php │ │ │ │ │ │ │ └── ViewTest.php │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ ├── AbstractTest.php │ │ │ │ │ │ │ ├── ListProduct │ │ │ │ │ │ │ ├── CheckProductPriceTest.php │ │ │ │ │ │ │ ├── ProductInCategoriesViewTest.php │ │ │ │ │ │ │ └── SortingTest.php │ │ │ │ │ │ │ ├── ListTest.php │ │ │ │ │ │ │ ├── NewTest.php │ │ │ │ │ │ │ ├── ProductList │ │ │ │ │ │ │ ├── AbstractLinksTest.php │ │ │ │ │ │ │ ├── CrosssellTest.php │ │ │ │ │ │ │ ├── RelatedTest.php │ │ │ │ │ │ │ ├── ToolbarTest.php │ │ │ │ │ │ │ └── UpsellTest.php │ │ │ │ │ │ │ ├── View │ │ │ │ │ │ │ ├── AbstractCurrencyTest.php │ │ │ │ │ │ │ ├── AdditionalTest.php │ │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ │ │ ├── AbstractAttributeTest.php │ │ │ │ │ │ │ │ ├── DateAttributeTest.php │ │ │ │ │ │ │ │ ├── DropdownAttributeTest.php │ │ │ │ │ │ │ │ ├── MultiSelectAttributeTest.php │ │ │ │ │ │ │ │ ├── PriceAttributeTest.php │ │ │ │ │ │ │ │ ├── TextAreaAttributeTest.php │ │ │ │ │ │ │ │ ├── TextAttributeTest.php │ │ │ │ │ │ │ │ └── YesNoAttributeTest.php │ │ │ │ │ │ │ ├── DescriptionTest.php │ │ │ │ │ │ │ ├── GalleryTest.php │ │ │ │ │ │ │ ├── MultiStoreCurrencyTest.php │ │ │ │ │ │ │ ├── Options │ │ │ │ │ │ │ │ ├── AbstractRenderCustomOptionsTest.php │ │ │ │ │ │ │ │ └── RenderOptionsTest.php │ │ │ │ │ │ │ ├── OptionsTest.php │ │ │ │ │ │ │ └── SingleStoreCurrencyTest.php │ │ │ │ │ │ │ └── ViewTest.php │ │ │ │ │ ├── Console │ │ │ │ │ │ └── Command │ │ │ │ │ │ │ └── ProductAttributesCleanUpTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ │ ├── Category │ │ │ │ │ │ │ │ ├── Delete │ │ │ │ │ │ │ │ │ └── DeleteCategoryWithEnabledFlatTest.php │ │ │ │ │ │ │ │ ├── DeleteTest.php │ │ │ │ │ │ │ │ └── Save │ │ │ │ │ │ │ │ │ ├── AbstractSaveCategoryTest.php │ │ │ │ │ │ │ │ │ ├── SaveCategoryTest.php │ │ │ │ │ │ │ │ │ ├── SaveCategoryWithEnabledFlatTest.php │ │ │ │ │ │ │ │ │ ├── UpdateCategoryTest.php │ │ │ │ │ │ │ │ │ └── UrlRewriteTest.php │ │ │ │ │ │ │ ├── CategoryTest.php │ │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ │ ├── Action │ │ │ │ │ │ │ │ │ └── AttributeTest.php │ │ │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ │ │ │ ├── Delete │ │ │ │ │ │ │ │ │ │ ├── AbstractDeleteAttributeControllerTest.php │ │ │ │ │ │ │ │ │ │ ├── CatalogAttributesControllerTest.php │ │ │ │ │ │ │ │ │ │ └── DeleteAttributeControllerErrorTest.php │ │ │ │ │ │ │ │ │ ├── Save │ │ │ │ │ │ │ │ │ │ ├── AbstractSaveAttributeTest.php │ │ │ │ │ │ │ │ │ │ └── InputType │ │ │ │ │ │ │ │ │ │ │ ├── DecimalTest.php │ │ │ │ │ │ │ │ │ │ │ └── MediaImageTest.php │ │ │ │ │ │ │ │ │ └── Update │ │ │ │ │ │ │ │ │ │ ├── AbstractUpdateAttributeTest.php │ │ │ │ │ │ │ │ │ │ └── InputType │ │ │ │ │ │ │ │ │ │ ├── DecimalTest.php │ │ │ │ │ │ │ │ │ │ └── MediaImageTest.php │ │ │ │ │ │ │ │ ├── AttributeTest.php │ │ │ │ │ │ │ │ ├── Gallery │ │ │ │ │ │ │ │ │ └── UploadTest.php │ │ │ │ │ │ │ │ ├── GetSelectedTest.php │ │ │ │ │ │ │ │ ├── MassDeleteTest.php │ │ │ │ │ │ │ │ ├── ReviewTest.php │ │ │ │ │ │ │ │ ├── Save │ │ │ │ │ │ │ │ │ ├── AdvancedPricingTest.php │ │ │ │ │ │ │ │ │ ├── CategoryIndexTest.php │ │ │ │ │ │ │ │ │ ├── CreateCustomOptionsTest.php │ │ │ │ │ │ │ │ │ ├── DeleteCustomOptionsTest.php │ │ │ │ │ │ │ │ │ ├── ImagesTest.php │ │ │ │ │ │ │ │ │ ├── LinksTest.php │ │ │ │ │ │ │ │ │ └── UpdateCustomOptionsTest.php │ │ │ │ │ │ │ │ ├── SearchTest.php │ │ │ │ │ │ │ │ └── Set │ │ │ │ │ │ │ │ │ ├── DeleteTest.php │ │ │ │ │ │ │ │ │ ├── SaveTest.php │ │ │ │ │ │ │ │ │ └── UpdateTest.php │ │ │ │ │ │ │ └── ProductTest.php │ │ │ │ │ │ ├── Category │ │ │ │ │ │ │ └── CategoryUrlRewriteTest.php │ │ │ │ │ │ ├── CategoryTest.php │ │ │ │ │ │ ├── IndexTest.php │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ ├── CompareTest.php │ │ │ │ │ │ │ ├── ProductUrlRewriteTest.php │ │ │ │ │ │ │ └── ViewTest.php │ │ │ │ │ │ └── ProductTest.php │ │ │ │ │ ├── Cron │ │ │ │ │ │ └── DeleteOutdatedPriceValuesTest.php │ │ │ │ │ ├── Helper │ │ │ │ │ │ ├── CategoryTest.php │ │ │ │ │ │ ├── DataTest.php │ │ │ │ │ │ ├── OutputTest.php │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ ├── CompareTest.php │ │ │ │ │ │ │ ├── CompositeTest.php │ │ │ │ │ │ │ ├── FlatTest.php │ │ │ │ │ │ │ ├── Stub │ │ │ │ │ │ │ │ └── ProductControllerStub.php │ │ │ │ │ │ │ └── ViewTest.php │ │ │ │ │ │ └── ProductTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── AbstractModel │ │ │ │ │ │ │ └── Stub.php │ │ │ │ │ │ ├── AbstractTest.php │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ │ └── Backend │ │ │ │ │ │ │ │ ├── AbstractLayoutUpdateTest.php │ │ │ │ │ │ │ │ ├── ConsumerTest.php │ │ │ │ │ │ │ │ └── CustomlayoutupdateTest.php │ │ │ │ │ │ ├── Category │ │ │ │ │ │ │ ├── DataProviderTest.php │ │ │ │ │ │ │ ├── Link │ │ │ │ │ │ │ │ └── SaveHandlerTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ ├── category_without_image.php │ │ │ │ │ │ │ │ ├── service_category_create.php │ │ │ │ │ │ │ │ └── service_category_create_rollback.php │ │ │ │ │ │ ├── CategoryLinkManagementTest.php │ │ │ │ │ │ ├── CategoryRepositoryTest.php │ │ │ │ │ │ ├── CategoryTest.php │ │ │ │ │ │ ├── CategoryTreeTest.php │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ ├── DesignTest.php │ │ │ │ │ │ ├── ImageUploaderTest.php │ │ │ │ │ │ ├── Indexer │ │ │ │ │ │ │ ├── Category │ │ │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ │ │ └── Action │ │ │ │ │ │ │ │ │ │ └── FullTest.php │ │ │ │ │ │ │ │ └── ProductTest.php │ │ │ │ │ │ │ ├── FlatTest.php │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ │ ├── CategoryIndexTest.php │ │ │ │ │ │ │ │ ├── Eav │ │ │ │ │ │ │ │ └── Action │ │ │ │ │ │ │ │ │ ├── FullTest.php │ │ │ │ │ │ │ │ │ ├── RowTest.php │ │ │ │ │ │ │ │ │ └── RowsTest.php │ │ │ │ │ │ │ │ ├── Flat │ │ │ │ │ │ │ │ ├── Action │ │ │ │ │ │ │ │ │ ├── CustomFlatAttributeTest.php │ │ │ │ │ │ │ │ │ ├── FullTest.php │ │ │ │ │ │ │ │ │ ├── RelationTest.php │ │ │ │ │ │ │ │ │ ├── RowTest.php │ │ │ │ │ │ │ │ │ └── RowsTest.php │ │ │ │ │ │ │ │ └── ProcessorTest.php │ │ │ │ │ │ │ │ └── Price │ │ │ │ │ │ │ │ ├── Action │ │ │ │ │ │ │ │ ├── FullTest.php │ │ │ │ │ │ │ │ ├── RowTest.php │ │ │ │ │ │ │ │ └── RowsTest.php │ │ │ │ │ │ │ │ ├── SimpleWithOptionsTierPriceTest.php │ │ │ │ │ │ │ │ └── SimpleWithOptionsTierPriceWithDimensionTest.php │ │ │ │ │ │ ├── Layer │ │ │ │ │ │ │ ├── CategoryTest.php │ │ │ │ │ │ │ └── Filter │ │ │ │ │ │ │ │ ├── AttributeTest.php │ │ │ │ │ │ │ │ ├── CategoryTest.php │ │ │ │ │ │ │ │ ├── DataProvider │ │ │ │ │ │ │ │ └── PriceTest.php │ │ │ │ │ │ │ │ ├── DecimalTest.php │ │ │ │ │ │ │ │ ├── Price │ │ │ │ │ │ │ │ ├── AlgorithmAdvancedTest.php │ │ │ │ │ │ │ │ ├── AlgorithmBaseTest.php │ │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ │ ├── _algorithm_base_data.php │ │ │ │ │ │ │ │ │ ├── products_advanced.php │ │ │ │ │ │ │ │ │ ├── products_advanced_rollback.php │ │ │ │ │ │ │ │ │ ├── products_base.php │ │ │ │ │ │ │ │ │ └── products_base_rollback.php │ │ │ │ │ │ │ │ ├── PriceTest.php │ │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ ├── attribute_weight_filterable.php │ │ │ │ │ │ │ │ ├── attribute_with_option.php │ │ │ │ │ │ │ │ └── attribute_with_option_rollback.php │ │ │ │ │ │ ├── Layout │ │ │ │ │ │ │ └── DepersonalizePluginTest.php │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ ├── ActionTest.php │ │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ │ │ ├── Backend │ │ │ │ │ │ │ │ │ ├── PriceTest.php │ │ │ │ │ │ │ │ │ ├── SkuTest.php │ │ │ │ │ │ │ │ │ └── TierpriceTest.php │ │ │ │ │ │ │ │ ├── Save │ │ │ │ │ │ │ │ │ ├── AbstractAttributeTest.php │ │ │ │ │ │ │ │ │ ├── AttributeDateTest.php │ │ │ │ │ │ │ │ │ ├── AttributeDropdownTest.php │ │ │ │ │ │ │ │ │ ├── AttributeMultiSelectTest.php │ │ │ │ │ │ │ │ │ ├── AttributePriceTest.php │ │ │ │ │ │ │ │ │ ├── AttributeTextAreaTest.php │ │ │ │ │ │ │ │ │ ├── AttributeTextTest.php │ │ │ │ │ │ │ │ │ └── AttributeYesNoTest.php │ │ │ │ │ │ │ │ ├── SetTest.php │ │ │ │ │ │ │ │ ├── Source │ │ │ │ │ │ │ │ │ └── CountryofmanufactureTest.php │ │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ │ ├── create_attribute_service.php │ │ │ │ │ │ │ │ │ ├── create_attribute_service_rollback.php │ │ │ │ │ │ │ │ │ ├── select_attribute.php │ │ │ │ │ │ │ │ │ └── select_attribute_rollback.php │ │ │ │ │ │ │ ├── AuthorizationTest.php │ │ │ │ │ │ │ ├── Compare │ │ │ │ │ │ │ │ └── ListCompareTest.php │ │ │ │ │ │ │ ├── CopierTest.php │ │ │ │ │ │ │ ├── CreateCustomOptionsTest.php │ │ │ │ │ │ │ ├── DeleteCustomOptionsTest.php │ │ │ │ │ │ │ ├── Gallery │ │ │ │ │ │ │ │ ├── CreateHandlerTest.php │ │ │ │ │ │ │ │ ├── ProcessorTest.php │ │ │ │ │ │ │ │ ├── ReadHandlerTest.php │ │ │ │ │ │ │ │ └── UpdateHandlerTest.php │ │ │ │ │ │ │ ├── ImageTest.php │ │ │ │ │ │ │ ├── LinksTest.php │ │ │ │ │ │ │ ├── Option │ │ │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ │ │ ├── DateTest.php │ │ │ │ │ │ │ │ │ ├── File │ │ │ │ │ │ │ │ │ ├── ValidatorFileTest.php │ │ │ │ │ │ │ │ │ └── ValidatorInfoTest.php │ │ │ │ │ │ │ │ │ └── TextTest.php │ │ │ │ │ │ │ ├── Price │ │ │ │ │ │ │ │ └── SpecialPriceStorageTest.php │ │ │ │ │ │ │ ├── ProductFrontendAction │ │ │ │ │ │ │ │ └── SynchronizerTest.php │ │ │ │ │ │ │ ├── Type │ │ │ │ │ │ │ │ ├── AbstractTypeTest.php │ │ │ │ │ │ │ │ ├── PriceTest.php │ │ │ │ │ │ │ │ ├── PriceWithDimensionTest.php │ │ │ │ │ │ │ │ └── VirtualTest.php │ │ │ │ │ │ │ ├── TypeTest.php │ │ │ │ │ │ │ ├── UpdateCustomOptionsTest.php │ │ │ │ │ │ │ ├── UpdateProductWebsiteTest.php │ │ │ │ │ │ │ ├── UrlTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ ├── service_product_create.php │ │ │ │ │ │ │ │ └── service_product_create_rollback.php │ │ │ │ │ │ ├── ProductExternalTest.php │ │ │ │ │ │ ├── ProductGettersTest.php │ │ │ │ │ │ ├── ProductHydratorTest.php │ │ │ │ │ │ ├── ProductLink │ │ │ │ │ │ │ └── ProductLinkQueryTest.php │ │ │ │ │ │ ├── ProductPriceTest.php │ │ │ │ │ │ ├── ProductPriceWithDimensionTest.php │ │ │ │ │ │ ├── ProductRepositoryTest.php │ │ │ │ │ │ ├── ProductTest.php │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ │ │ ├── CollectionTest.php │ │ │ │ │ │ │ │ ├── Entity │ │ │ │ │ │ │ │ │ └── AttributeTest.php │ │ │ │ │ │ │ │ └── WebsiteAttributesSynchronizerTest.php │ │ │ │ │ │ │ ├── Category │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ ├── CategoryTest.php │ │ │ │ │ │ │ ├── Eav │ │ │ │ │ │ │ │ └── AttributeTest.php │ │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ │ ├── CollectionTest.php │ │ │ │ │ │ │ │ ├── Indexer │ │ │ │ │ │ │ │ │ └── Eav │ │ │ │ │ │ │ │ │ │ └── SourceTest.php │ │ │ │ │ │ │ │ └── Link │ │ │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ ├── ProductTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ ├── category_multiple_stores.php │ │ │ │ │ │ │ │ ├── few_simple_products.php │ │ │ │ │ │ │ │ ├── few_simple_products_rollback.php │ │ │ │ │ │ │ │ ├── product_simple.php │ │ │ │ │ │ │ │ ├── product_simple_rollback.php │ │ │ │ │ │ │ │ ├── url_rewrites.php │ │ │ │ │ │ │ │ ├── website_attribute_sync.php │ │ │ │ │ │ │ │ ├── website_attribute_sync_flag.php │ │ │ │ │ │ │ │ ├── website_attribute_sync_flag_rollback.php │ │ │ │ │ │ │ │ └── website_attribute_sync_rollback.php │ │ │ │ │ │ └── Webapi │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ └── Option │ │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ └── File │ │ │ │ │ │ │ └── ProcessorTest.php │ │ │ │ │ ├── Observer │ │ │ │ │ │ └── SwitchPriceAttributeScopeOnConfigChangeTest.php │ │ │ │ │ ├── Plugin │ │ │ │ │ │ └── Model │ │ │ │ │ │ │ └── AttributeSetRepository │ │ │ │ │ │ │ └── RemoveProductsTest.php │ │ │ │ │ ├── Pricing │ │ │ │ │ │ └── Render │ │ │ │ │ │ │ ├── FinalPriceBox │ │ │ │ │ │ │ └── RenderingBasedOnIsProductListFlagTest.php │ │ │ │ │ │ │ ├── FinalPriceBoxTest.php │ │ │ │ │ │ │ └── PriceTypes │ │ │ │ │ │ │ ├── CombinationAbstract.php │ │ │ │ │ │ │ ├── CombinationTest.php │ │ │ │ │ │ │ └── MultiWebsiteCombinationTest.php │ │ │ │ │ ├── Ui │ │ │ │ │ │ └── DataProvider │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ ├── Attributes │ │ │ │ │ │ │ └── ListingTest.php │ │ │ │ │ │ │ ├── Form │ │ │ │ │ │ │ └── Modifier │ │ │ │ │ │ │ │ ├── AbstractEavTest.php │ │ │ │ │ │ │ │ ├── CategoriesTest.php │ │ │ │ │ │ │ │ ├── Eav │ │ │ │ │ │ │ │ ├── AttributeSetGroupsTest.php │ │ │ │ │ │ │ │ ├── BooleanAttributeTest.php │ │ │ │ │ │ │ │ ├── DateAttributeTest.php │ │ │ │ │ │ │ │ ├── DecimalAttributeTest.php │ │ │ │ │ │ │ │ ├── DefaultAttributesTest.php │ │ │ │ │ │ │ │ ├── ImageAttributeTest.php │ │ │ │ │ │ │ │ ├── MultiselectAttributeTest.php │ │ │ │ │ │ │ │ ├── SelectAttributeTest.php │ │ │ │ │ │ │ │ └── VarcharAttributeTest.php │ │ │ │ │ │ │ │ ├── EavTest.php │ │ │ │ │ │ │ │ ├── LayoutUpdateTest.php │ │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ ├── eav_expected_data_output.php │ │ │ │ │ │ │ │ ├── eav_expected_meta_output.php │ │ │ │ │ │ │ │ ├── eav_expected_meta_output_w_default.php │ │ │ │ │ │ │ │ ├── expected_categories.php │ │ │ │ │ │ │ │ └── input_meta_for_categories.php │ │ │ │ │ │ │ └── QuantityAndStockStatusTest.php │ │ │ │ │ ├── WidgetTest.php │ │ │ │ │ ├── _files │ │ │ │ │ │ ├── MultiselectSourceMock.php │ │ │ │ │ │ ├── attribute_page_layout_default.php │ │ │ │ │ │ ├── attribute_page_layout_default_rollback.php │ │ │ │ │ │ ├── attribute_set_based_on_default.php │ │ │ │ │ │ ├── attribute_set_based_on_default_rollback.php │ │ │ │ │ │ ├── attribute_set_based_on_default_set.php │ │ │ │ │ │ ├── attribute_set_based_on_default_with_custom_group.php │ │ │ │ │ │ ├── attribute_set_based_on_default_with_custom_group_rollback.php │ │ │ │ │ │ ├── attribute_set_based_on_default_without_country_of_manufacture.php │ │ │ │ │ │ ├── attribute_set_based_on_default_without_country_of_manufacture_rollback.php │ │ │ │ │ │ ├── attribute_set_with_image_attribute.php │ │ │ │ │ │ ├── attribute_set_with_image_attribute_rollback.php │ │ │ │ │ │ ├── attribute_set_with_product.php │ │ │ │ │ │ ├── attribute_set_with_product_rollback.php │ │ │ │ │ │ ├── attribute_set_with_renamed_group.php │ │ │ │ │ │ ├── catalog_category_image.php │ │ │ │ │ │ ├── catalog_category_image_rollback.php │ │ │ │ │ │ ├── catalog_category_with_apostrophe.php │ │ │ │ │ │ ├── catalog_category_with_apostrophe_rollback.php │ │ │ │ │ │ ├── catalog_category_with_doublequotes.php │ │ │ │ │ │ ├── catalog_category_with_image.php │ │ │ │ │ │ ├── catalog_category_with_image_rollback.php │ │ │ │ │ │ ├── catalog_category_with_long_image_name.php │ │ │ │ │ │ ├── catalog_category_with_long_image_name_rollback.php │ │ │ │ │ │ ├── catalog_category_with_slash.php │ │ │ │ │ │ ├── catalog_tmp_category_image.php │ │ │ │ │ │ ├── catalog_tmp_category_image_rollback.php │ │ │ │ │ │ ├── categories.php │ │ │ │ │ │ ├── categories_disabled.php │ │ │ │ │ │ ├── categories_disabled_rollback.php │ │ │ │ │ │ ├── categories_no_products.php │ │ │ │ │ │ ├── categories_no_products_rollback.php │ │ │ │ │ │ ├── categories_no_products_with_two_tree.php │ │ │ │ │ │ ├── categories_no_products_with_two_tree_rollback.php │ │ │ │ │ │ ├── categories_rollback.php │ │ │ │ │ │ ├── category.php │ │ │ │ │ │ ├── category_anchor.php │ │ │ │ │ │ ├── category_anchor_rollback.php │ │ │ │ │ │ ├── category_attribute.php │ │ │ │ │ │ ├── category_attribute_rollback.php │ │ │ │ │ │ ├── category_backend.php │ │ │ │ │ │ ├── category_backend_rollback.php │ │ │ │ │ │ ├── category_duplicates.php │ │ │ │ │ │ ├── category_duplicates_rollback.php │ │ │ │ │ │ ├── category_enabled_for_store.php │ │ │ │ │ │ ├── category_enabled_for_store_rollback.php │ │ │ │ │ │ ├── category_in_second_root_category.php │ │ │ │ │ │ ├── category_in_second_root_category_rollback.php │ │ │ │ │ │ ├── category_on_second_store.php │ │ │ │ │ │ ├── category_on_second_store_rollback.php │ │ │ │ │ │ ├── category_product.php │ │ │ │ │ │ ├── category_product_assigned_to_website.php │ │ │ │ │ │ ├── category_product_assigned_to_website_rollback.php │ │ │ │ │ │ ├── category_product_rollback.php │ │ │ │ │ │ ├── category_rollback.php │ │ │ │ │ │ ├── category_specific_fields.php │ │ │ │ │ │ ├── category_specific_fields_rollback.php │ │ │ │ │ │ ├── category_tree.php │ │ │ │ │ │ ├── category_tree_rollback.php │ │ │ │ │ │ ├── category_tree_with_products.php │ │ │ │ │ │ ├── category_tree_with_products_rollback.php │ │ │ │ │ │ ├── category_with_cms_block.php │ │ │ │ │ │ ├── category_with_cms_block_rollback.php │ │ │ │ │ │ ├── category_with_different_price_products.php │ │ │ │ │ │ ├── category_with_different_price_products_on_two_websites.php │ │ │ │ │ │ ├── category_with_different_price_products_on_two_websites_rollback.php │ │ │ │ │ │ ├── category_with_different_price_products_rollback.php │ │ │ │ │ │ ├── category_with_parent_anchor.php │ │ │ │ │ │ ├── category_with_parent_anchor_rollback.php │ │ │ │ │ │ ├── category_with_position.php │ │ │ │ │ │ ├── category_with_position_rollback.php │ │ │ │ │ │ ├── category_with_three_products.php │ │ │ │ │ │ ├── category_with_three_products_rollback.php │ │ │ │ │ │ ├── category_with_two_products.php │ │ │ │ │ │ ├── category_with_two_products_rollback.php │ │ │ │ │ │ ├── category_with_two_stores.php │ │ │ │ │ │ ├── category_with_two_stores_rollback.php │ │ │ │ │ │ ├── configurable_attribute.php │ │ │ │ │ │ ├── configurable_attribute_rollback.php │ │ │ │ │ │ ├── configurable_products_with_custom_attribute_layered_navigation.php │ │ │ │ │ │ ├── configurable_products_with_custom_attribute_layered_navigation_rollback.php │ │ │ │ │ │ ├── dropdown_attribute.php │ │ │ │ │ │ ├── dropdown_attribute_rollback.php │ │ │ │ │ │ ├── dropdown_attribute_with_html.php │ │ │ │ │ │ ├── dropdown_attribute_with_html_rollback.php │ │ │ │ │ │ ├── empty_attribute_group.php │ │ │ │ │ │ ├── empty_attribute_group_rollback.php │ │ │ │ │ │ ├── enable_catalog_product_reindex_schedule.php │ │ │ │ │ │ ├── enable_catalog_product_reindex_schedule_rollback.php │ │ │ │ │ │ ├── enable_price_index_schedule.php │ │ │ │ │ │ ├── enable_price_index_schedule_rollback.php │ │ │ │ │ │ ├── enable_reindex_schedule.php │ │ │ │ │ │ ├── enable_reindex_schedule_rollback.php │ │ │ │ │ │ ├── etc │ │ │ │ │ │ │ └── extension_attributes.xml │ │ │ │ │ │ ├── filterable_attributes.php │ │ │ │ │ │ ├── inactive_category.php │ │ │ │ │ │ ├── inactive_category_rollback.php │ │ │ │ │ │ ├── indexer_catalog_category.php │ │ │ │ │ │ ├── indexer_catalog_category_rollback.php │ │ │ │ │ │ ├── indexer_catalog_products.php │ │ │ │ │ │ ├── indexer_catalog_products_rollback.php │ │ │ │ │ │ ├── magento_empty.jpg │ │ │ │ │ │ ├── magento_image with space in name.jpg │ │ │ │ │ │ ├── magento_image.gif │ │ │ │ │ │ ├── magento_image.jpg │ │ │ │ │ │ ├── magento_long_image_name_magento_long_image_name_magento_long_image_name.jpg │ │ │ │ │ │ ├── magento_small_image.jpg │ │ │ │ │ │ ├── magento_thumbnail.jpg │ │ │ │ │ │ ├── multiple_mixed_products.php │ │ │ │ │ │ ├── multiple_mixed_products_2.php │ │ │ │ │ │ ├── multiple_mixed_products_2_rollback.php │ │ │ │ │ │ ├── multiple_mixed_products_rollback.php │ │ │ │ │ │ ├── multiple_products.php │ │ │ │ │ │ ├── multiple_products_rollback.php │ │ │ │ │ │ ├── multiple_products_with_different_sku_and_name.php │ │ │ │ │ │ ├── multiple_products_with_different_sku_and_name_rollback.php │ │ │ │ │ │ ├── multiple_products_with_few_out_of_stock.php │ │ │ │ │ │ ├── multiple_products_with_few_out_of_stock_rollback.php │ │ │ │ │ │ ├── multiple_products_with_non_saleable_product.php │ │ │ │ │ │ ├── multiple_products_with_non_saleable_product_rollback.php │ │ │ │ │ │ ├── multiple_related_products.php │ │ │ │ │ │ ├── multiple_related_products_rollback.php │ │ │ │ │ │ ├── multiselect_attribute.php │ │ │ │ │ │ ├── multiselect_attribute_rollback.php │ │ │ │ │ │ ├── multiselect_attribute_with_html.php │ │ │ │ │ │ ├── multiselect_attribute_with_html_rollback.php │ │ │ │ │ │ ├── multiselect_attribute_with_incorrect_values.php │ │ │ │ │ │ ├── multiselect_attribute_with_source_model.php │ │ │ │ │ │ ├── multiselect_attribute_with_source_model_rollback.php │ │ │ │ │ │ ├── order_item_with_product_and_custom_options.php │ │ │ │ │ │ ├── order_item_with_product_and_custom_options_rollback.php │ │ │ │ │ │ ├── out_of_stock_product_with_category.php │ │ │ │ │ │ ├── out_of_stock_product_with_category_rollback.php │ │ │ │ │ │ ├── price_row_fixture.php │ │ │ │ │ │ ├── price_row_fixture_rollback.php │ │ │ │ │ │ ├── product_associated.php │ │ │ │ │ │ ├── product_associated_rollback.php │ │ │ │ │ │ ├── product_attribute.php │ │ │ │ │ │ ├── product_attribute_rollback.php │ │ │ │ │ │ ├── product_attribute_with_invalid_apply_to.php │ │ │ │ │ │ ├── product_boolean_attribute.php │ │ │ │ │ │ ├── product_boolean_attribute_rollback.php │ │ │ │ │ │ ├── product_date_attribute.php │ │ │ │ │ │ ├── product_date_attribute_rollback.php │ │ │ │ │ │ ├── product_datetime_attribute.php │ │ │ │ │ │ ├── product_datetime_attribute_rollback.php │ │ │ │ │ │ ├── product_decimal_attribute.php │ │ │ │ │ │ ├── product_decimal_attribute_rollback.php │ │ │ │ │ │ ├── product_different_store_prices.php │ │ │ │ │ │ ├── product_different_store_prices_rollback.php │ │ │ │ │ │ ├── product_dropdown_attribute.php │ │ │ │ │ │ ├── product_dropdown_attribute_rollback.php │ │ │ │ │ │ ├── product_group_prices_rollback.php │ │ │ │ │ │ ├── product_has_tier_price_show_as_low_as.php │ │ │ │ │ │ ├── product_has_tier_price_show_as_low_as_rollback.php │ │ │ │ │ │ ├── product_image.php │ │ │ │ │ │ ├── product_image_attribute.php │ │ │ │ │ │ ├── product_image_attribute_rollback.php │ │ │ │ │ │ ├── product_image_rollback.php │ │ │ │ │ │ ├── product_in_compare_list_with_customer.php │ │ │ │ │ │ ├── product_in_compare_list_with_customer_rollback.php │ │ │ │ │ │ ├── product_in_multiple_categories.php │ │ │ │ │ │ ├── product_in_multiple_categories_rollback.php │ │ │ │ │ │ ├── product_in_nested_anchor_categories.php │ │ │ │ │ │ ├── product_in_nested_anchor_categories_rollback.php │ │ │ │ │ │ ├── product_multistore_different_short_description.php │ │ │ │ │ │ ├── product_multistore_different_short_description_rollback.php │ │ │ │ │ │ ├── product_multiwebsite_different_description.php │ │ │ │ │ │ ├── product_multiwebsite_different_description_rollback.php │ │ │ │ │ │ ├── product_out_of_stock_with_multiselect_attribute.php │ │ │ │ │ │ ├── product_out_of_stock_with_multiselect_attribute_rollback.php │ │ │ │ │ │ ├── product_simple.php │ │ │ │ │ │ ├── product_simple_disabled.php │ │ │ │ │ │ ├── product_simple_duplicated.php │ │ │ │ │ │ ├── product_simple_duplicated_rollback.php │ │ │ │ │ │ ├── product_simple_multistore.php │ │ │ │ │ │ ├── product_simple_multistore_rollback.php │ │ │ │ │ │ ├── product_simple_multistore_with_url_key.php │ │ │ │ │ │ ├── product_simple_multistore_with_url_key_rollback.php │ │ │ │ │ │ ├── product_simple_out_of_stock.php │ │ │ │ │ │ ├── product_simple_out_of_stock_rollback.php │ │ │ │ │ │ ├── product_simple_out_of_stock_without_categories.php │ │ │ │ │ │ ├── product_simple_out_of_stock_without_categories_rollback.php │ │ │ │ │ │ ├── product_simple_rollback.php │ │ │ │ │ │ ├── product_simple_tax_none.php │ │ │ │ │ │ ├── product_simple_tax_none_rollback.php │ │ │ │ │ │ ├── product_simple_with_admin_store.php │ │ │ │ │ │ ├── product_simple_with_all_fields.php │ │ │ │ │ │ ├── product_simple_with_all_fields_rollback.php │ │ │ │ │ │ ├── product_simple_with_category_which_has_parent_category.php │ │ │ │ │ │ ├── product_simple_with_category_which_has_parent_category_rollback.php │ │ │ │ │ │ ├── product_simple_with_country_of_manufacture.php │ │ │ │ │ │ ├── product_simple_with_country_of_manufacture_rollback.php │ │ │ │ │ │ ├── product_simple_with_custom_attribute.php │ │ │ │ │ │ ├── product_simple_with_custom_attribute_in_flat.php │ │ │ │ │ │ ├── product_simple_with_custom_attribute_in_flat_rollback.php │ │ │ │ │ │ ├── product_simple_with_custom_attribute_rollback.php │ │ │ │ │ │ ├── product_simple_with_custom_file_option.php │ │ │ │ │ │ ├── product_simple_with_custom_file_option_rollback.php │ │ │ │ │ │ ├── product_simple_with_custom_options.php │ │ │ │ │ │ ├── product_simple_with_custom_options_rollback.php │ │ │ │ │ │ ├── product_simple_with_custom_store_scope_attribute.php │ │ │ │ │ │ ├── product_simple_with_custom_store_scope_attribute_rollback.php │ │ │ │ │ │ ├── product_simple_with_date_attribute.php │ │ │ │ │ │ ├── product_simple_with_date_attribute_rollback.php │ │ │ │ │ │ ├── product_simple_with_decimal_qty.php │ │ │ │ │ │ ├── product_simple_with_decimal_qty_rollback.php │ │ │ │ │ │ ├── product_simple_with_fixed_tier_price.php │ │ │ │ │ │ ├── product_simple_with_fixed_tier_price_for_logged_user.php │ │ │ │ │ │ ├── product_simple_with_fixed_tier_price_for_logged_user_rollback.php │ │ │ │ │ │ ├── product_simple_with_fixed_tier_price_for_not_logged_user.php │ │ │ │ │ │ ├── product_simple_with_fixed_tier_price_for_not_logged_user_rollback.php │ │ │ │ │ │ ├── product_simple_with_fixed_tier_price_rollback.php │ │ │ │ │ │ ├── product_simple_with_full_option_set.php │ │ │ │ │ │ ├── product_simple_with_full_option_set_rollback.php │ │ │ │ │ │ ├── product_simple_with_image.php │ │ │ │ │ │ ├── product_simple_with_media_gallery_entries.php │ │ │ │ │ │ ├── product_simple_with_media_gallery_entries_rollback.php │ │ │ │ │ │ ├── product_simple_with_non_latin_url_key.php │ │ │ │ │ │ ├── product_simple_with_non_latin_url_key_rollback.php │ │ │ │ │ │ ├── product_simple_with_options.php │ │ │ │ │ │ ├── product_simple_with_options_rollback.php │ │ │ │ │ │ ├── product_simple_with_percent_tier_price.php │ │ │ │ │ │ ├── product_simple_with_percent_tier_price_rollback.php │ │ │ │ │ │ ├── product_simple_with_url_key.php │ │ │ │ │ │ ├── product_simple_with_url_key_rollback.php │ │ │ │ │ │ ├── product_simple_with_wholesale_tier_price.php │ │ │ │ │ │ ├── product_simple_with_wholesale_tier_price_rollback.php │ │ │ │ │ │ ├── product_simple_with_wrong_url_key.php │ │ │ │ │ │ ├── product_simple_with_wrong_url_key_rollback.php │ │ │ │ │ │ ├── product_simple_without_custom_options.php │ │ │ │ │ │ ├── product_simple_without_custom_options_rollback.php │ │ │ │ │ │ ├── product_simple_xss.php │ │ │ │ │ │ ├── product_simple_xss_rollback.php │ │ │ │ │ │ ├── product_special_price.php │ │ │ │ │ │ ├── product_special_price_rollback.php │ │ │ │ │ │ ├── product_system_attribute.php │ │ │ │ │ │ ├── product_system_attribute_rollback.php │ │ │ │ │ │ ├── product_text_attribute.php │ │ │ │ │ │ ├── product_text_attribute_rollback.php │ │ │ │ │ │ ├── product_text_editor_attribute.php │ │ │ │ │ │ ├── product_text_editor_attribute_rollback.php │ │ │ │ │ │ ├── product_two_websites.php │ │ │ │ │ │ ├── product_two_websites_rollback.php │ │ │ │ │ │ ├── product_varchar_attribute.php │ │ │ │ │ │ ├── product_varchar_attribute_rollback.php │ │ │ │ │ │ ├── product_virtual.php │ │ │ │ │ │ ├── product_virtual_in_stock.php │ │ │ │ │ │ ├── product_virtual_in_stock_rollback.php │ │ │ │ │ │ ├── product_virtual_out_of_stock.php │ │ │ │ │ │ ├── product_virtual_out_of_stock_rollback.php │ │ │ │ │ │ ├── product_virtual_rollback.php │ │ │ │ │ │ ├── product_virtual_with_options.php │ │ │ │ │ │ ├── product_virtual_with_options_rollback.php │ │ │ │ │ │ ├── product_with_category.php │ │ │ │ │ │ ├── product_with_category_rollback.php │ │ │ │ │ │ ├── product_with_dropdown_option.php │ │ │ │ │ │ ├── product_with_dropdown_option_rollback.php │ │ │ │ │ │ ├── product_with_image.php │ │ │ │ │ │ ├── product_with_image_no_options.php │ │ │ │ │ │ ├── product_with_image_no_options_rollback.php │ │ │ │ │ │ ├── product_with_image_rollback.php │ │ │ │ │ │ ├── product_with_image_without_types.php │ │ │ │ │ │ ├── product_with_image_without_types_rollback.php │ │ │ │ │ │ ├── product_with_multiple_images.php │ │ │ │ │ │ ├── product_with_multiple_images_rollback.php │ │ │ │ │ │ ├── product_with_options.php │ │ │ │ │ │ ├── product_with_options_rollback.php │ │ │ │ │ │ ├── product_with_price_on_second_website.php │ │ │ │ │ │ ├── product_with_price_on_second_website_rollback.php │ │ │ │ │ │ ├── product_with_test_attribute_set.php │ │ │ │ │ │ ├── product_with_test_attribute_set_rollback.php │ │ │ │ │ │ ├── product_with_two_websites.php │ │ │ │ │ │ ├── product_with_two_websites_rollback.php │ │ │ │ │ │ ├── product_with_varchar_attribute.php │ │ │ │ │ │ ├── product_with_varchar_attribute_rollback.php │ │ │ │ │ │ ├── product_without_options.php │ │ │ │ │ │ ├── product_without_options_rollback.php │ │ │ │ │ │ ├── product_without_options_with_stock_data.php │ │ │ │ │ │ ├── product_without_options_with_stock_data_rollback.php │ │ │ │ │ │ ├── products.php │ │ │ │ │ │ ├── products_crosssell.php │ │ │ │ │ │ ├── products_crosssell_rollback.php │ │ │ │ │ │ ├── products_for_relevance_sorting.php │ │ │ │ │ │ ├── products_for_relevance_sorting_rollback.php │ │ │ │ │ │ ├── products_for_search.php │ │ │ │ │ │ ├── products_for_search_rollback.php │ │ │ │ │ │ ├── products_in_category.php │ │ │ │ │ │ ├── products_in_category_rollback.php │ │ │ │ │ │ ├── products_in_different_stores.php │ │ │ │ │ │ ├── products_in_different_stores_rollback.php │ │ │ │ │ │ ├── products_list.php │ │ │ │ │ │ ├── products_list_rollback.php │ │ │ │ │ │ ├── products_new.php │ │ │ │ │ │ ├── products_new_rollback.php │ │ │ │ │ │ ├── products_related.php │ │ │ │ │ │ ├── products_related_disabled.php │ │ │ │ │ │ ├── products_related_disabled_rollback.php │ │ │ │ │ │ ├── products_related_multiple.php │ │ │ │ │ │ ├── products_related_multiple_rollback.php │ │ │ │ │ │ ├── products_related_rollback.php │ │ │ │ │ │ ├── products_rollback.php │ │ │ │ │ │ ├── products_upsell.php │ │ │ │ │ │ ├── products_upsell_rollback.php │ │ │ │ │ │ ├── products_with_boolean_attribute.php │ │ │ │ │ │ ├── products_with_boolean_attribute_rollback.php │ │ │ │ │ │ ├── products_with_different_price.php │ │ │ │ │ │ ├── products_with_different_price_rollback.php │ │ │ │ │ │ ├── products_with_dropdown_attribute.php │ │ │ │ │ │ ├── products_with_dropdown_attribute_rollback.php │ │ │ │ │ │ ├── products_with_dropdown_attribute_without_all_store_view.php │ │ │ │ │ │ ├── products_with_dropdown_attribute_without_all_store_view_rollback.php │ │ │ │ │ │ ├── products_with_layered_navigation_attribute.php │ │ │ │ │ │ ├── products_with_layered_navigation_attribute_rollback.php │ │ │ │ │ │ ├── products_with_layered_navigation_attribute_store_options.php │ │ │ │ │ │ ├── products_with_layered_navigation_attribute_store_options_rollback.php │ │ │ │ │ │ ├── products_with_layered_navigation_custom_attribute.php │ │ │ │ │ │ ├── products_with_layered_navigation_custom_attribute_rollback.php │ │ │ │ │ │ ├── products_with_layered_navigation_with_multiselect_attribute.php │ │ │ │ │ │ ├── products_with_layered_navigation_with_multiselect_attribute_rollback.php │ │ │ │ │ │ ├── products_with_multiselect_attribute.php │ │ │ │ │ │ ├── products_with_multiselect_attribute_rollback.php │ │ │ │ │ │ ├── products_with_multiselect_attribute_with_source_model.php │ │ │ │ │ │ ├── products_with_multiselect_attribute_with_source_model_rollback.php │ │ │ │ │ │ ├── products_with_not_empty_layered_navigation_attribute.php │ │ │ │ │ │ ├── products_with_not_empty_layered_navigation_attribute_rollback.php │ │ │ │ │ │ ├── products_with_unique_input_attribute.php │ │ │ │ │ │ ├── products_with_websites_and_stores.php │ │ │ │ │ │ ├── products_with_websites_and_stores_rollback.php │ │ │ │ │ │ ├── quantity_and_stock_status_attribute_used_in_grid.php │ │ │ │ │ │ ├── quantity_and_stock_status_attribute_used_in_grid_rollback.php │ │ │ │ │ │ ├── quote_with_product_and_custom_options.php │ │ │ │ │ │ ├── quote_with_product_and_custom_options_rollback.php │ │ │ │ │ │ ├── reindex_catalog_category_flat.php │ │ │ │ │ │ ├── row_fixture.php │ │ │ │ │ │ ├── row_fixture_rollback.php │ │ │ │ │ │ ├── second_product_simple.php │ │ │ │ │ │ ├── second_product_simple_rollback.php │ │ │ │ │ │ ├── second_website.php │ │ │ │ │ │ ├── second_website_rollback.php │ │ │ │ │ │ ├── simple_product_cyrillic_symbols.php │ │ │ │ │ │ ├── simple_product_cyrillic_symbols_rollback.php │ │ │ │ │ │ ├── simple_product_disabled.php │ │ │ │ │ │ ├── simple_product_disabled_rollback.php │ │ │ │ │ │ ├── simple_product_min_max_sale_qty.php │ │ │ │ │ │ ├── simple_product_min_max_sale_qty_rollback.php │ │ │ │ │ │ ├── simple_product_with_qty_increments.php │ │ │ │ │ │ ├── simple_product_with_qty_increments_rollback.php │ │ │ │ │ │ ├── simple_product_with_tier_price_for_logged_user.php │ │ │ │ │ │ ├── simple_product_with_tier_price_for_logged_user_rollback.php │ │ │ │ │ │ ├── simple_product_with_tier_prices_for_multiple_groups.php │ │ │ │ │ │ ├── simple_product_with_tier_prices_for_multiple_groups_rollback.php │ │ │ │ │ │ ├── simple_products_not_visible_individually.php │ │ │ │ │ │ ├── simple_products_not_visible_individually_rollback.php │ │ │ │ │ │ ├── taxable_simple_product.php │ │ │ │ │ │ ├── taxable_simple_product_rollback.php │ │ │ │ │ │ ├── two_simple_products_with_tier_price.php │ │ │ │ │ │ ├── two_simple_products_with_tier_price_rollback.php │ │ │ │ │ │ ├── unique_input_attribute.php │ │ │ │ │ │ ├── url_rewrites.php │ │ │ │ │ │ ├── url_rewrites_invalid.php │ │ │ │ │ │ ├── url_rewrites_rollback.php │ │ │ │ │ │ ├── validate_image.php │ │ │ │ │ │ ├── validate_image_info.php │ │ │ │ │ │ ├── validate_image_info_rollback.php │ │ │ │ │ │ ├── validate_image_rollback.php │ │ │ │ │ │ └── watermark.jpg │ │ │ │ │ └── controllers │ │ │ │ │ │ └── _files │ │ │ │ │ │ ├── attribute_system.php │ │ │ │ │ │ ├── attribute_system_popup.php │ │ │ │ │ │ ├── attribute_system_with_applyto_data.php │ │ │ │ │ │ ├── attribute_user_defined.php │ │ │ │ │ │ ├── product_image.png │ │ │ │ │ │ ├── products.php │ │ │ │ │ │ └── products_rollback.php │ │ │ │ │ ├── CatalogImportExport │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── AbstractProductExportImportTestCase.php │ │ │ │ │ │ ├── Export │ │ │ │ │ │ │ └── ProductTest.php │ │ │ │ │ │ ├── Import │ │ │ │ │ │ │ ├── ImportWithSharedImagesTest.php │ │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ │ │ └── AbstractTest.php │ │ │ │ │ │ │ ├── ProductTest.php │ │ │ │ │ │ │ ├── UploaderTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ ├── custom_attributes.php │ │ │ │ │ │ │ │ ├── custom_attributes_rollback.php │ │ │ │ │ │ │ │ ├── custom_category_store_media_disabled.php │ │ │ │ │ │ │ │ ├── custom_category_store_media_disabled_rollback.php │ │ │ │ │ │ │ │ ├── disable_product.csv │ │ │ │ │ │ │ │ ├── enable_product.csv │ │ │ │ │ │ │ │ ├── hide_from_product_page_images.csv │ │ │ │ │ │ │ │ ├── import_change_image_label_for_storeview.csv │ │ │ │ │ │ │ │ ├── import_configurable_product_multistore.csv │ │ │ │ │ │ │ │ ├── import_hide_image_for_storeview.csv │ │ │ │ │ │ │ │ ├── import_image_name_without_slash.csv │ │ │ │ │ │ │ │ ├── import_media.csv │ │ │ │ │ │ │ │ ├── import_media_additional_images.csv │ │ │ │ │ │ │ │ ├── import_media_additional_long_name_image.csv │ │ │ │ │ │ │ │ ├── import_media_existing_images.csv │ │ │ │ │ │ │ │ ├── import_media_hidden_images.csv │ │ │ │ │ │ │ │ ├── import_media_two_stores.csv │ │ │ │ │ │ │ │ ├── import_media_with_no_selection.csv │ │ │ │ │ │ │ │ ├── import_new_categories_custom_separator.csv │ │ │ │ │ │ │ │ ├── import_new_categories_default_separator.csv │ │ │ │ │ │ │ │ ├── import_product_with_empty_attribute_value.csv │ │ │ │ │ │ │ │ ├── import_with_filesystem_images.php │ │ │ │ │ │ │ │ ├── import_with_filesystem_images_rollback.php │ │ │ │ │ │ │ │ ├── magento_additional_image_error.jpg │ │ │ │ │ │ │ │ ├── magento_additional_image_four.jpg │ │ │ │ │ │ │ │ ├── magento_additional_image_one.jpg │ │ │ │ │ │ │ │ ├── magento_additional_image_three.jpg │ │ │ │ │ │ │ │ ├── magento_additional_image_two.jpg │ │ │ │ │ │ │ │ ├── media_import_image.php │ │ │ │ │ │ │ │ ├── media_import_image_rollback.php │ │ │ │ │ │ │ │ ├── product_to_import_invalid_weight.csv │ │ │ │ │ │ │ │ ├── product_with_custom_options.csv │ │ │ │ │ │ │ │ ├── product_with_custom_options_and_multiple_store_views.csv │ │ │ │ │ │ │ │ ├── product_with_custom_options_new.csv │ │ │ │ │ │ │ │ ├── product_with_custom_store_media_disabled.csv │ │ │ │ │ │ │ │ ├── product_without_custom_options.csv │ │ │ │ │ │ │ │ ├── products_duplicate_category.csv │ │ │ │ │ │ │ │ ├── products_multiple_stores.csv │ │ │ │ │ │ │ │ ├── products_to_check_duplicated_names.csv │ │ │ │ │ │ │ │ ├── products_to_check_duplicated_url_keys.csv │ │ │ │ │ │ │ │ ├── products_to_check_valid_url_keys.csv │ │ │ │ │ │ │ │ ├── products_to_check_valid_url_keys_multiple_stores.csv │ │ │ │ │ │ │ │ ├── products_to_check_valid_url_keys_with_different_language.csv │ │ │ │ │ │ │ │ ├── products_to_import.csv │ │ │ │ │ │ │ │ ├── products_to_import_invalid_attribute_set.csv │ │ │ │ │ │ │ │ ├── products_to_import_with_additional_attributes.csv │ │ │ │ │ │ │ │ ├── products_to_import_with_backorders_disabled_and_not_0_qty.csv │ │ │ │ │ │ │ │ ├── products_to_import_with_backorders_enabled_and_0_qty.csv │ │ │ │ │ │ │ │ ├── products_to_import_with_category.csv │ │ │ │ │ │ │ │ ├── products_to_import_with_changed_sku_case.csv │ │ │ │ │ │ │ │ ├── products_to_import_with_datetime.csv │ │ │ │ │ │ │ │ ├── products_to_import_with_invalid_url_keys.csv │ │ │ │ │ │ │ │ ├── products_to_import_with_multiple_store.csv │ │ │ │ │ │ │ │ ├── products_to_import_with_new_attribute_set.csv │ │ │ │ │ │ │ │ ├── products_to_import_with_non_existing_image.csv │ │ │ │ │ │ │ │ ├── products_to_import_with_non_latin_url_keys.csv │ │ │ │ │ │ │ │ ├── products_to_import_with_product_links.csv │ │ │ │ │ │ │ │ ├── products_to_import_with_product_links_with_empty_value.csv │ │ │ │ │ │ │ │ ├── products_to_import_with_qty.csv │ │ │ │ │ │ │ │ ├── products_to_import_with_related.csv │ │ │ │ │ │ │ │ ├── products_to_import_with_two_stores.csv │ │ │ │ │ │ │ │ ├── products_to_import_with_use_config_settings.csv │ │ │ │ │ │ │ │ ├── products_to_import_with_valid_url_keys.csv │ │ │ │ │ │ │ │ ├── products_to_import_without_url_key_column.csv │ │ │ │ │ │ │ │ ├── products_to_import_without_url_keys.csv │ │ │ │ │ │ │ │ ├── products_to_import_without_url_keys_and_name.csv │ │ │ │ │ │ │ │ ├── products_to_import_zero_qty.csv │ │ │ │ │ │ │ │ ├── products_with_invalid_multiselect_values.csv │ │ │ │ │ │ │ │ └── products_with_two_store_views.csv │ │ │ │ │ │ └── ProductTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── catalog_import_products_with_same_images.csv │ │ │ │ │ │ ├── cataloginventory_stock_item_update_by_schedule.php │ │ │ │ │ │ ├── cataloginventory_stock_item_update_by_schedule_rollback.php │ │ │ │ │ │ ├── magento_image.jpg │ │ │ │ │ │ ├── product_export_data.php │ │ │ │ │ │ ├── product_export_data_rollback.php │ │ │ │ │ │ ├── product_export_data_special_chars.php │ │ │ │ │ │ ├── product_export_data_special_chars_rollback.php │ │ │ │ │ │ ├── product_export_with_broken_categories_path.php │ │ │ │ │ │ ├── product_export_with_broken_categories_path_rollback.php │ │ │ │ │ │ ├── product_export_with_categories.php │ │ │ │ │ │ ├── product_export_with_images.php │ │ │ │ │ │ ├── product_export_with_images_rollback.php │ │ │ │ │ │ ├── product_export_with_product_links_data.php │ │ │ │ │ │ ├── product_export_with_product_links_data_rollback.php │ │ │ │ │ │ ├── update_category_duplicates.php │ │ │ │ │ │ └── update_category_duplicates_rollback.php │ │ │ │ │ ├── CatalogInventory │ │ │ │ │ ├── Api │ │ │ │ │ │ └── StockItemSaveTest.php │ │ │ │ │ ├── Block │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── Form │ │ │ │ │ │ │ └── Field │ │ │ │ │ │ │ └── CustomergroupTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Indexer │ │ │ │ │ │ │ └── Stock │ │ │ │ │ │ │ │ └── Action │ │ │ │ │ │ │ │ ├── FullTest.php │ │ │ │ │ │ │ │ ├── RowTest.php │ │ │ │ │ │ │ │ └── RowsTest.php │ │ │ │ │ │ ├── Plugin │ │ │ │ │ │ │ └── ProductSearchTest.php │ │ │ │ │ │ ├── Quote │ │ │ │ │ │ │ └── Item │ │ │ │ │ │ │ │ └── QuantityValidatorTest.php │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ │ └── Indexer │ │ │ │ │ │ │ │ └── Stock │ │ │ │ │ │ │ │ └── DefaultStockTest.php │ │ │ │ │ │ ├── Stock │ │ │ │ │ │ │ └── ItemTest.php │ │ │ │ │ │ ├── StockItemSave │ │ │ │ │ │ │ ├── ByStockItemRepositoryTest.php │ │ │ │ │ │ │ ├── OnProductCreate │ │ │ │ │ │ │ │ ├── ByProductModel │ │ │ │ │ │ │ │ │ ├── ByQuantityAndStockStatusTest.php │ │ │ │ │ │ │ │ │ ├── ByStockDataTest.php │ │ │ │ │ │ │ │ │ └── ByStockItemTest.php │ │ │ │ │ │ │ │ └── ByProductRepository │ │ │ │ │ │ │ │ │ ├── ByQuantityAndStockStatusTest.php │ │ │ │ │ │ │ │ │ ├── ByStockDataTest.php │ │ │ │ │ │ │ │ │ └── ByStockItemTest.php │ │ │ │ │ │ │ ├── OnProductUpdate │ │ │ │ │ │ │ │ ├── ByProductModel │ │ │ │ │ │ │ │ │ ├── ByQuantityAndStockStatusTest.php │ │ │ │ │ │ │ │ │ ├── ByStockDataTest.php │ │ │ │ │ │ │ │ │ └── ByStockItemTest.php │ │ │ │ │ │ │ │ └── ByProductRepository │ │ │ │ │ │ │ │ │ ├── ByQuantityAndStockStatusTest.php │ │ │ │ │ │ │ │ │ ├── ByStockDataTest.php │ │ │ │ │ │ │ │ │ └── ByStockItemTest.php │ │ │ │ │ │ │ └── StockItemDataChecker.php │ │ │ │ │ │ └── System │ │ │ │ │ │ │ └── Config │ │ │ │ │ │ │ └── Backend │ │ │ │ │ │ │ └── MinsaleqtyTest.php │ │ │ │ │ ├── Observer │ │ │ │ │ │ ├── AddStockItemsObserverTest.php │ │ │ │ │ │ └── SaveInventoryDataObserverTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── configurable_options_advanced_inventory.php │ │ │ │ │ │ └── configurable_options_with_low_stock.php │ │ │ │ │ ├── CatalogRule │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Indexer │ │ │ │ │ │ │ ├── BatchIndexTest.php │ │ │ │ │ │ │ ├── IndexerBuilderTest.php │ │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ │ └── PriceTest.php │ │ │ │ │ │ │ ├── ProductRuleTest.php │ │ │ │ │ │ │ └── RuleProductTest.php │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ │ └── ConditionsToCollectionApplierTest.php │ │ │ │ │ │ │ └── Rule │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ └── RuleTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── attribute.php │ │ │ │ │ │ ├── attribute_rollback.php │ │ │ │ │ │ ├── catalog_rule_10_off_not_logged.php │ │ │ │ │ │ ├── catalog_rule_10_off_not_logged_rollback.php │ │ │ │ │ │ ├── catalog_rule_6_off_logged_user.php │ │ │ │ │ │ ├── catalog_rule_6_off_logged_user_rollback.php │ │ │ │ │ │ ├── catalog_rule_for_category_999.php │ │ │ │ │ │ ├── catalog_rule_for_category_999_rollback.php │ │ │ │ │ │ ├── conditions_to_collection │ │ │ │ │ │ ├── attribute_sets.php │ │ │ │ │ │ ├── attribute_sets_rollback.php │ │ │ │ │ │ ├── categories.php │ │ │ │ │ │ ├── categories_rollback.php │ │ │ │ │ │ ├── products.php │ │ │ │ │ │ └── products_rollback.php │ │ │ │ │ │ ├── configurable_product.php │ │ │ │ │ │ ├── configurable_product_rollback.php │ │ │ │ │ │ ├── delete_catalog_rule_data.php │ │ │ │ │ │ ├── delete_catalog_rule_data_rollback.php │ │ │ │ │ │ ├── rule_adjust_final_price_to_discount_value_not_logged_user.php │ │ │ │ │ │ ├── rule_adjust_final_price_to_discount_value_not_logged_user_rollback.php │ │ │ │ │ │ ├── rule_adjust_final_price_to_this_percentage_not_logged_user.php │ │ │ │ │ │ ├── rule_adjust_final_price_to_this_percentage_not_logged_user_rollback.php │ │ │ │ │ │ ├── rule_apply_as_fixed_amount_not_logged_user.php │ │ │ │ │ │ ├── rule_apply_as_fixed_amount_not_logged_user_rollback.php │ │ │ │ │ │ ├── rule_apply_as_percentage_of_original_not_logged_user.php │ │ │ │ │ │ ├── rule_apply_as_percentage_of_original_not_logged_user_rollback.php │ │ │ │ │ │ ├── rule_by_attribute.php │ │ │ │ │ │ ├── rule_by_attribute_rollback.php │ │ │ │ │ │ ├── rule_by_category_ids.php │ │ │ │ │ │ ├── rule_by_category_ids_rollback.php │ │ │ │ │ │ ├── simple_product_with_catalog_rule_50_percent_off.php │ │ │ │ │ │ ├── simple_product_with_catalog_rule_50_percent_off_rollback.php │ │ │ │ │ │ ├── simple_products.php │ │ │ │ │ │ ├── simple_products_rollback.php │ │ │ │ │ │ ├── two_rules.php │ │ │ │ │ │ └── two_rules_rollback.php │ │ │ │ │ ├── CatalogRuleConfigurable │ │ │ │ │ ├── Model │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ └── Configurable │ │ │ │ │ │ │ └── PriceTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── configurable_product_with_percent_rule.php │ │ │ │ │ │ ├── configurable_product_with_percent_rule_rollback.php │ │ │ │ │ │ ├── configurable_product_with_percent_rules_for_children.php │ │ │ │ │ │ └── configurable_product_with_percent_rules_for_children_rollback.php │ │ │ │ │ ├── CatalogSearch │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── Advanced │ │ │ │ │ │ │ └── ResultTest.php │ │ │ │ │ │ ├── ResultTest.php │ │ │ │ │ │ └── TermTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── Advanced │ │ │ │ │ │ │ └── ResultTest.php │ │ │ │ │ │ ├── AjaxTest.php │ │ │ │ │ │ ├── Result │ │ │ │ │ │ │ └── IndexTest.php │ │ │ │ │ │ └── ResultTest.php │ │ │ │ │ ├── Helper │ │ │ │ │ │ └── DataTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Indexer │ │ │ │ │ │ │ ├── Fulltext │ │ │ │ │ │ │ │ ├── Action │ │ │ │ │ │ │ │ │ ├── DataProviderTest.php │ │ │ │ │ │ │ │ │ └── FullTest.php │ │ │ │ │ │ │ │ ├── Model │ │ │ │ │ │ │ │ │ └── Plugin │ │ │ │ │ │ │ │ │ │ └── CategoryTest.php │ │ │ │ │ │ │ │ └── Plugin │ │ │ │ │ │ │ │ │ └── AttributeTest.php │ │ │ │ │ │ │ └── FulltextTest.php │ │ │ │ │ │ ├── Layer │ │ │ │ │ │ │ └── Filter │ │ │ │ │ │ │ │ ├── AttributeTest.php │ │ │ │ │ │ │ │ ├── CategoryTest.php │ │ │ │ │ │ │ │ ├── DecimalTest.php │ │ │ │ │ │ │ │ └── PriceTest.php │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ │ ├── Advanced │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ └── Fulltext │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ └── Search │ │ │ │ │ │ │ ├── AttributeSearchWeightTest.php │ │ │ │ │ │ │ └── RequestGeneratorTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── full_reindex.php │ │ │ │ │ │ ├── indexer_fulltext.php │ │ │ │ │ │ ├── indexer_fulltext_rollback.php │ │ │ │ │ │ ├── popular_query.php │ │ │ │ │ │ ├── product_configurable_not_available.php │ │ │ │ │ │ ├── product_configurable_not_available_rollback.php │ │ │ │ │ │ ├── product_configurable_two_options.php │ │ │ │ │ │ ├── product_configurable_two_options_rollback.php │ │ │ │ │ │ ├── product_configurable_with_single_child.php │ │ │ │ │ │ ├── product_configurable_with_single_child_rollback.php │ │ │ │ │ │ ├── product_for_search.php │ │ │ │ │ │ ├── product_for_search_rollback.php │ │ │ │ │ │ ├── product_for_search_with_hyphen_in_sku.php │ │ │ │ │ │ ├── product_for_search_with_hyphen_in_sku_rollback.php │ │ │ │ │ │ ├── products_for_index.php │ │ │ │ │ │ ├── products_for_index_rollback.php │ │ │ │ │ │ ├── products_for_sku_search_weight_score.php │ │ │ │ │ │ ├── products_for_sku_search_weight_score_rollback.php │ │ │ │ │ │ ├── query.php │ │ │ │ │ │ ├── query_redirect.php │ │ │ │ │ │ ├── requests.xml │ │ │ │ │ │ ├── search_attributes.php │ │ │ │ │ │ ├── search_attributes_rollback.php │ │ │ │ │ │ └── searchable_attribute.php │ │ │ │ │ ├── CatalogUrlRewrite │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── product_custom_url_key.php │ │ │ │ │ │ └── product_custom_url_key_rollback.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── AbstractUrlRewriteTest.php │ │ │ │ │ │ ├── CategoryUrlRewriteGeneratorTest.php │ │ │ │ │ │ ├── CategoryUrlRewriteTest.php │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ └── AnchorUrlRewriteGeneratorTest.php │ │ │ │ │ │ ├── ProductUrlRewriteGeneratorTest.php │ │ │ │ │ │ └── ProductUrlRewriteTest.php │ │ │ │ │ ├── Observer │ │ │ │ │ │ ├── CategoryProcessUrlRewriteSavingObserverTest.php │ │ │ │ │ │ ├── ProcessUrlRewriteOnChangeVisibilityObserverTest.php │ │ │ │ │ │ ├── ProductProcessUrlRewriteSavingObserverTest.php │ │ │ │ │ │ └── UrlRewriteHandlerTest.php │ │ │ │ │ ├── Plugin │ │ │ │ │ │ └── Catalog │ │ │ │ │ │ │ └── Block │ │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── Category │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ └── AttributesTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── categories.php │ │ │ │ │ │ ├── categories_rollback.php │ │ │ │ │ │ ├── categories_with_product_ids.php │ │ │ │ │ │ ├── categories_with_product_ids_rollback.php │ │ │ │ │ │ ├── categories_with_products.php │ │ │ │ │ │ ├── categories_with_products_rollback.php │ │ │ │ │ │ ├── categories_with_stores.php │ │ │ │ │ │ ├── categories_with_stores_rollback.php │ │ │ │ │ │ ├── category_with_products.php │ │ │ │ │ │ ├── category_with_products_rollback.php │ │ │ │ │ │ ├── product_invisible_multistore.php │ │ │ │ │ │ ├── product_invisible_multistore_rollback.php │ │ │ │ │ │ ├── product_rewrite_multistore.php │ │ │ │ │ │ ├── product_rewrite_multistore_rollback.php │ │ │ │ │ │ ├── product_simple.php │ │ │ │ │ │ ├── product_simple_rollback.php │ │ │ │ │ │ ├── product_with_category.php │ │ │ │ │ │ ├── product_with_category_empty_url_suffix.php │ │ │ │ │ │ ├── product_with_category_empty_url_suffix_rollback.php │ │ │ │ │ │ ├── product_with_category_rollback.php │ │ │ │ │ │ ├── product_with_stores.php │ │ │ │ │ │ ├── product_with_stores_rollback.php │ │ │ │ │ │ ├── products_invisible.php │ │ │ │ │ │ └── products_invisible_rollback.php │ │ │ │ │ ├── CatalogWidget │ │ │ │ │ ├── Block │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ ├── ProductListTest.php │ │ │ │ │ │ │ └── Widget │ │ │ │ │ │ │ └── ConditionsTest.php │ │ │ │ │ └── Model │ │ │ │ │ │ └── Rule │ │ │ │ │ │ └── Condition │ │ │ │ │ │ └── ProductTest.php │ │ │ │ │ ├── Checkout │ │ │ │ │ ├── Api │ │ │ │ │ │ ├── GuestShippingInformationManagementTest.php │ │ │ │ │ │ └── ShippingInformationManagementTest.php │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── Cart │ │ │ │ │ │ │ ├── AbstractCartTest.php │ │ │ │ │ │ │ ├── CrosssellTest.php │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ ├── CartTest.php │ │ │ │ │ │ └── Checkout │ │ │ │ │ │ │ └── LayoutProcessorTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── Cart │ │ │ │ │ │ │ ├── AddTest.php │ │ │ │ │ │ │ ├── Index │ │ │ │ │ │ │ │ └── CouponPostTest.php │ │ │ │ │ │ │ └── UpdateItemQtyTest.php │ │ │ │ │ │ └── CartTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── CaptchaPaymentProcessingRateLimiterTest.php │ │ │ │ │ │ ├── CaptchaRateLimiterTest.php │ │ │ │ │ │ ├── CartTest.php │ │ │ │ │ │ ├── SessionTest.php │ │ │ │ │ │ └── ShippingInformationManagementTest.php │ │ │ │ │ ├── Plugin │ │ │ │ │ │ └── Model │ │ │ │ │ │ │ └── Quote │ │ │ │ │ │ │ └── ResetQuoteAddressesTest.php │ │ │ │ │ ├── ViewModel │ │ │ │ │ │ └── CartTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── ValidatorFileMock.php │ │ │ │ │ │ ├── active_quote.php │ │ │ │ │ │ ├── active_quote_customer_not_default_store.php │ │ │ │ │ │ ├── active_quote_customer_not_default_store_rollback.php │ │ │ │ │ │ ├── active_quote_guest_not_default_store.php │ │ │ │ │ │ ├── active_quote_guest_not_default_store_rollback.php │ │ │ │ │ │ ├── active_quote_rollback.php │ │ │ │ │ │ ├── active_quote_with_downloadable_product.php │ │ │ │ │ │ ├── active_quote_with_downloadable_product_rollback.php │ │ │ │ │ │ ├── cart.php │ │ │ │ │ │ ├── cart_with_simple_product_and_custom_options.php │ │ │ │ │ │ ├── customer_quote_on_second_website.php │ │ │ │ │ │ ├── customer_quote_on_second_website_rollback.php │ │ │ │ │ │ ├── customer_quote_ready_for_order.php │ │ │ │ │ │ ├── customer_quote_ready_for_order_rollback.php │ │ │ │ │ │ ├── customer_quote_with_items_simple_product_options.php │ │ │ │ │ │ ├── customer_quote_with_items_simple_product_options_rollback.php │ │ │ │ │ │ ├── customers.php │ │ │ │ │ │ ├── discount_10percent.php │ │ │ │ │ │ ├── discount_10percent_generalusers.php │ │ │ │ │ │ ├── discount_10percent_generalusers_rollback.php │ │ │ │ │ │ ├── discount_10percent_rollback.php │ │ │ │ │ │ ├── inactive_quote_with_customer.php │ │ │ │ │ │ ├── inactive_quote_with_customer_rollback.php │ │ │ │ │ │ ├── order_items.php │ │ │ │ │ │ ├── orders.php │ │ │ │ │ │ ├── product_bundle.php │ │ │ │ │ │ ├── product_with_custom_option.php │ │ │ │ │ │ ├── products.php │ │ │ │ │ │ ├── quote.php │ │ │ │ │ │ ├── quote_with_address.php │ │ │ │ │ │ ├── quote_with_address_and_shipping_method_saved.php │ │ │ │ │ │ ├── quote_with_address_and_shipping_method_saved_rollback.php │ │ │ │ │ │ ├── quote_with_address_rollback.php │ │ │ │ │ │ ├── quote_with_address_saved.php │ │ │ │ │ │ ├── quote_with_address_saved_rollback.php │ │ │ │ │ │ ├── quote_with_bundle_and_options.php │ │ │ │ │ │ ├── quote_with_bundle_and_options_rollback.php │ │ │ │ │ │ ├── quote_with_bundle_product.php │ │ │ │ │ │ ├── quote_with_bundle_product_rollback.php │ │ │ │ │ │ ├── quote_with_bundle_product_with_dynamic_price.php │ │ │ │ │ │ ├── quote_with_bundle_product_with_dynamic_price_rollback.php │ │ │ │ │ │ ├── quote_with_check_payment.php │ │ │ │ │ │ ├── quote_with_check_payment_rollback.php │ │ │ │ │ │ ├── quote_with_coupon_saved.php │ │ │ │ │ │ ├── quote_with_coupon_saved_rollback.php │ │ │ │ │ │ ├── quote_with_customer_without_address.php │ │ │ │ │ │ ├── quote_with_customer_without_address_rollback.php │ │ │ │ │ │ ├── quote_with_downloadable_product.php │ │ │ │ │ │ ├── quote_with_downloadable_product_rollback.php │ │ │ │ │ │ ├── quote_with_items_and_custom_options_saved.php │ │ │ │ │ │ ├── quote_with_items_and_custom_options_saved_rollback.php │ │ │ │ │ │ ├── quote_with_items_saved.php │ │ │ │ │ │ ├── quote_with_items_saved_rollback.php │ │ │ │ │ │ ├── quote_with_not_visible_individually_product.php │ │ │ │ │ │ ├── quote_with_not_visible_individually_product_rollback.php │ │ │ │ │ │ ├── quote_with_payment_saved.php │ │ │ │ │ │ ├── quote_with_payment_saved_rollback.php │ │ │ │ │ │ ├── quote_with_product_and_payment.php │ │ │ │ │ │ ├── quote_with_product_and_payment_rollback.php │ │ │ │ │ │ ├── quote_with_shipping_method.php │ │ │ │ │ │ ├── quote_with_shipping_method_and_items_categories.php │ │ │ │ │ │ ├── quote_with_shipping_method_and_items_categories_rollback.php │ │ │ │ │ │ ├── quote_with_shipping_method_rollback.php │ │ │ │ │ │ ├── quote_with_simple_product.php │ │ │ │ │ │ ├── quote_with_simple_product_and_custom_option.php │ │ │ │ │ │ ├── quote_with_simple_product_and_image.php │ │ │ │ │ │ ├── quote_with_simple_product_and_image_rollback.php │ │ │ │ │ │ ├── quote_with_simple_product_saved.php │ │ │ │ │ │ ├── quote_with_simple_product_saved_rollback.php │ │ │ │ │ │ ├── quote_with_taxable_product_and_customer.php │ │ │ │ │ │ ├── quote_with_taxable_product_and_customer_rollback.php │ │ │ │ │ │ ├── quote_with_virtual_product_and_address.php │ │ │ │ │ │ ├── quote_with_virtual_product_and_address_rollback.php │ │ │ │ │ │ ├── quote_with_virtual_product_saved.php │ │ │ │ │ │ ├── quote_with_virtual_product_saved_rollback.php │ │ │ │ │ │ ├── rollback_quote.php │ │ │ │ │ │ ├── set_product_min_in_cart.php │ │ │ │ │ │ ├── simple_product.php │ │ │ │ │ │ └── simple_product_rollback.php │ │ │ │ │ ├── CheckoutAgreements │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Api │ │ │ │ │ │ │ └── SearchCriteria │ │ │ │ │ │ │ │ └── ActiveStoreAgreementsFilterTest.php │ │ │ │ │ │ ├── Checkout │ │ │ │ │ │ │ └── Plugin │ │ │ │ │ │ │ │ └── GuestValidationTest.php │ │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ │ └── Grid │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── agreement_active_with_html_content.php │ │ │ │ │ │ ├── agreement_active_with_html_content_rollback.php │ │ │ │ │ │ ├── agreement_inactive_with_text_content.php │ │ │ │ │ │ ├── agreement_inactive_with_text_content_rollback.php │ │ │ │ │ │ ├── multi_agreements_active_with_text.php │ │ │ │ │ │ └── multi_agreements_active_with_text_rollback.php │ │ │ │ │ ├── Cms │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── BlockTest.php │ │ │ │ │ │ ├── PageTest.php │ │ │ │ │ │ └── Widget │ │ │ │ │ │ │ └── BlockTest.php │ │ │ │ │ ├── Command │ │ │ │ │ │ └── WysiwygRestrictCommandTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ │ ├── Block │ │ │ │ │ │ │ │ └── DeleteTest.php │ │ │ │ │ │ │ ├── FulltextGridSearchTest.php │ │ │ │ │ │ │ ├── PageDesignTest.php │ │ │ │ │ │ │ └── Wysiwyg │ │ │ │ │ │ │ │ └── Images │ │ │ │ │ │ │ │ ├── DeleteFilesTest.php │ │ │ │ │ │ │ │ ├── DeleteFolderTest.php │ │ │ │ │ │ │ │ ├── IndexTest.php │ │ │ │ │ │ │ │ ├── NewFolderTest.php │ │ │ │ │ │ │ │ └── UploadTest.php │ │ │ │ │ │ ├── Noroute │ │ │ │ │ │ │ └── IndexTest.php │ │ │ │ │ │ ├── PageTest.php │ │ │ │ │ │ └── RouterTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── page_list.php │ │ │ │ │ │ └── page_list_rollback.php │ │ │ │ │ ├── Helper │ │ │ │ │ │ ├── PageTest.php │ │ │ │ │ │ └── Wysiwyg │ │ │ │ │ │ │ └── ImagesTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── BlockTest.php │ │ │ │ │ │ ├── Page │ │ │ │ │ │ │ ├── CustomLayoutManagerTest.php │ │ │ │ │ │ │ ├── CustomLayoutRepositoryTest.php │ │ │ │ │ │ │ └── DataProviderTest.php │ │ │ │ │ │ ├── PageRepositoryTest.php │ │ │ │ │ │ ├── PageTest.php │ │ │ │ │ │ └── Wysiwyg │ │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ │ └── Images │ │ │ │ │ │ │ ├── GetInsertImageContentTest.php │ │ │ │ │ │ │ └── StorageTest.php │ │ │ │ │ ├── Setup │ │ │ │ │ │ └── ContentConverterTest.php │ │ │ │ │ ├── Ui │ │ │ │ │ │ └── Component │ │ │ │ │ │ │ └── DataProviderTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── block.php │ │ │ │ │ │ ├── block_default_store.php │ │ │ │ │ │ ├── block_default_store_rollback.php │ │ │ │ │ │ ├── block_rollback.php │ │ │ │ │ │ ├── blocks.php │ │ │ │ │ │ ├── blocks_for_different_stores.php │ │ │ │ │ │ ├── blocks_for_different_stores_rollback.php │ │ │ │ │ │ ├── blocks_rollback.php │ │ │ │ │ │ ├── home_with_custom_handle.php │ │ │ │ │ │ ├── home_with_custom_handle_rollback.php │ │ │ │ │ │ ├── linked_media.php │ │ │ │ │ │ ├── linked_media_rollback.php │ │ │ │ │ │ ├── noroute.php │ │ │ │ │ │ ├── pages.php │ │ │ │ │ │ ├── pages_rollback.php │ │ │ │ │ │ ├── pages_with_layout_xml.php │ │ │ │ │ │ ├── pages_with_layout_xml_rollback.php │ │ │ │ │ │ ├── test.swf │ │ │ │ │ │ ├── text.txt │ │ │ │ │ │ ├── two_cms_page_with_same_url_for_different_stores.php │ │ │ │ │ │ └── two_cms_page_with_same_url_for_different_stores_rollback.php │ │ │ │ │ ├── CmsUrlRewrite │ │ │ │ │ └── Plugin │ │ │ │ │ │ └── Cms │ │ │ │ │ │ └── Model │ │ │ │ │ │ └── Store │ │ │ │ │ │ └── ViewTest.php │ │ │ │ │ ├── Config │ │ │ │ │ ├── App │ │ │ │ │ │ └── Config │ │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ └── SystemTest.php │ │ │ │ │ ├── Block │ │ │ │ │ │ └── System │ │ │ │ │ │ │ └── Config │ │ │ │ │ │ │ ├── FieldArray.php │ │ │ │ │ │ │ ├── FormStub.php │ │ │ │ │ │ │ ├── FormTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── test_config.xml │ │ │ │ │ │ │ └── test_system.xml │ │ │ │ │ ├── Console │ │ │ │ │ │ └── Command │ │ │ │ │ │ │ ├── ConfigSetCommandTest.php │ │ │ │ │ │ │ └── ConfigShowCommandTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── System │ │ │ │ │ │ │ └── ConfigTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ ├── Backend │ │ │ │ │ │ │ │ ├── Admin │ │ │ │ │ │ │ │ │ └── RobotsTest.php │ │ │ │ │ │ │ │ ├── BaseurlTest.php │ │ │ │ │ │ │ │ ├── EncryptedTest.php │ │ │ │ │ │ │ │ └── Image │ │ │ │ │ │ │ │ │ └── AdapterTest.php │ │ │ │ │ │ │ ├── Export │ │ │ │ │ │ │ │ └── CommentTest.php │ │ │ │ │ │ │ ├── Processor │ │ │ │ │ │ │ │ └── EnvironmentPlaceholderTest.php │ │ │ │ │ │ │ └── Structure │ │ │ │ │ │ │ │ └── Reader │ │ │ │ │ │ │ │ ├── ConverterStub.php │ │ │ │ │ │ │ │ ├── ReaderStub.php │ │ │ │ │ │ │ │ ├── ReaderTest.php │ │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ └── config.xml │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ │ └── ConfigTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── config_groups.php │ │ │ │ │ │ │ ├── config_section.php │ │ │ │ │ │ │ ├── no_robots_txt.php │ │ │ │ │ │ │ ├── robots.txt │ │ │ │ │ │ │ └── robots_txt.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── config.php │ │ │ │ │ │ ├── config_data.php │ │ │ │ │ │ ├── env.php │ │ │ │ │ │ └── system.xml │ │ │ │ │ ├── ConfigurableImportExport │ │ │ │ │ └── Model │ │ │ │ │ │ ├── ConfigurableTest.php │ │ │ │ │ │ ├── Export │ │ │ │ │ │ └── RowCustomizerTest.php │ │ │ │ │ │ └── Import │ │ │ │ │ │ ├── Product │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ └── ConfigurableTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ ├── import_configurable.csv │ │ │ │ │ │ ├── import_configurable_12345.csv │ │ │ │ │ │ ├── import_configurable_for_multiple_store_views.csv │ │ │ │ │ │ └── import_configurable_for_multiple_store_views_error.csv │ │ │ │ │ ├── ConfigurableProduct │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ │ ├── Composite │ │ │ │ │ │ │ │ └── Fieldset │ │ │ │ │ │ │ │ │ └── ConfigurableTest.php │ │ │ │ │ │ │ │ ├── Edit │ │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ │ │ └── Variations │ │ │ │ │ │ │ │ │ └── Config │ │ │ │ │ │ │ │ │ └── MatrixTest.php │ │ │ │ │ │ │ │ └── Steps │ │ │ │ │ │ │ │ └── AttributeValuesTest.php │ │ │ │ │ │ ├── Cart │ │ │ │ │ │ │ └── Item │ │ │ │ │ │ │ │ └── Renderer │ │ │ │ │ │ │ │ └── ConfigurableTest.php │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ ├── ProductList │ │ │ │ │ │ │ ├── RelatedTest.php │ │ │ │ │ │ │ └── UpsellTest.php │ │ │ │ │ │ │ └── View │ │ │ │ │ │ │ ├── CustomOptions │ │ │ │ │ │ │ └── RenderOptionsTest.php │ │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ ├── ConfigurableProductPriceTest.php │ │ │ │ │ │ │ ├── ConfigurableTest.php │ │ │ │ │ │ │ ├── ConfigurableViewOnCategoryPageTest.php │ │ │ │ │ │ │ ├── ConfigurableViewOnProductPageTest.php │ │ │ │ │ │ │ ├── MultiStoreConfigurableViewOnProductPageTest.php │ │ │ │ │ │ │ └── RenderConfigurableOptionsTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ │ ├── Initialization │ │ │ │ │ │ │ │ │ └── HelperTest.php │ │ │ │ │ │ │ │ ├── MassDeleteTest.php │ │ │ │ │ │ │ │ └── Save │ │ │ │ │ │ │ │ │ ├── CreateCustomOptionsTest.php │ │ │ │ │ │ │ │ │ ├── DeleteCustomOptionsTest.php │ │ │ │ │ │ │ │ │ └── UpdateCustomOptionsTest.php │ │ │ │ │ │ │ └── ProductTest.php │ │ │ │ │ │ └── CartTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Category │ │ │ │ │ │ │ └── ProductIndexerTest.php │ │ │ │ │ │ ├── FindByUrlRewriteTest.php │ │ │ │ │ │ ├── OptionRepositoryTest.php │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ ├── SaveHandlerTest.php │ │ │ │ │ │ │ ├── Type │ │ │ │ │ │ │ │ ├── Configurable │ │ │ │ │ │ │ │ │ ├── AttributeTest.php │ │ │ │ │ │ │ │ │ ├── PriceTest.php │ │ │ │ │ │ │ │ │ └── SalableTest.php │ │ │ │ │ │ │ │ └── ConfigurableTest.php │ │ │ │ │ │ │ └── VariationHandlerTest.php │ │ │ │ │ │ ├── ProductTest.php │ │ │ │ │ │ ├── QuickSearchTest.php │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ │ ├── Indexer │ │ │ │ │ │ │ │ ├── Price │ │ │ │ │ │ │ │ │ └── ConfigurableTest.php │ │ │ │ │ │ │ │ └── Stock │ │ │ │ │ │ │ │ │ └── ConfigurableTest.php │ │ │ │ │ │ │ │ └── RelationTest.php │ │ │ │ │ │ └── Sales │ │ │ │ │ │ │ └── AdminOrder │ │ │ │ │ │ │ └── ReorderTest.php │ │ │ │ │ ├── Pricing │ │ │ │ │ │ ├── Price │ │ │ │ │ │ │ ├── LowestPriceOptionProviderTest.php │ │ │ │ │ │ │ ├── SpecialPriceIndexerTest.php │ │ │ │ │ │ │ ├── SpecialPriceIndexerWithDimensionTest.php │ │ │ │ │ │ │ └── SpecialPriceTest.php │ │ │ │ │ │ └── Render │ │ │ │ │ │ │ └── FinalPriceBox │ │ │ │ │ │ │ ├── RenderingBasedOnIsProductListFlagTest.php │ │ │ │ │ │ │ └── RenderingBasedOnIsProductListFlagWithDimensionTest.php │ │ │ │ │ ├── Ui │ │ │ │ │ │ └── DataProvider │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ └── Form │ │ │ │ │ │ │ └── Modifier │ │ │ │ │ │ │ └── Data │ │ │ │ │ │ │ └── AssociatedProductsTest.php │ │ │ │ │ ├── _files │ │ │ │ │ │ ├── associated_products.php │ │ │ │ │ │ ├── configurable_attribute.php │ │ │ │ │ │ ├── configurable_attribute_2.php │ │ │ │ │ │ ├── configurable_attribute_2_rollback.php │ │ │ │ │ │ ├── configurable_attribute_different_labels_per_stores.php │ │ │ │ │ │ ├── configurable_attribute_different_labels_per_stores_rollback.php │ │ │ │ │ │ ├── configurable_attribute_first.php │ │ │ │ │ │ ├── configurable_attribute_first_rollback.php │ │ │ │ │ │ ├── configurable_attribute_rollback.php │ │ │ │ │ │ ├── configurable_attribute_second.php │ │ │ │ │ │ ├── configurable_attribute_second_rollback.php │ │ │ │ │ │ ├── configurable_attribute_with_source_model.php │ │ │ │ │ │ ├── configurable_attribute_with_source_model_rollback.php │ │ │ │ │ │ ├── configurable_attributes_for_position_test.php │ │ │ │ │ │ ├── configurable_attributes_for_position_test_rollback.php │ │ │ │ │ │ ├── configurable_product_different_option_labeles_per_stores.php │ │ │ │ │ │ ├── configurable_product_different_option_labeles_per_stores_rollback.php │ │ │ │ │ │ ├── configurable_product_two_websites.php │ │ │ │ │ │ ├── configurable_product_two_websites_rollback.php │ │ │ │ │ │ ├── configurable_product_with_category.php │ │ │ │ │ │ ├── configurable_product_with_category_rollback.php │ │ │ │ │ │ ├── configurable_product_with_child_products_with_images.php │ │ │ │ │ │ ├── configurable_product_with_child_products_with_images_rollback.php │ │ │ │ │ │ ├── configurable_product_with_custom_option_and_simple_tier_price.php │ │ │ │ │ │ ├── configurable_product_with_custom_option_and_simple_tier_price_rollback.php │ │ │ │ │ │ ├── configurable_product_with_one_simple.php │ │ │ │ │ │ ├── configurable_product_with_one_simple_rollback.php │ │ │ │ │ │ ├── configurable_product_with_out_of_stock_children.php │ │ │ │ │ │ ├── configurable_product_with_out_of_stock_children_rollback.php │ │ │ │ │ │ ├── configurable_product_with_price_on_second_website.php │ │ │ │ │ │ ├── configurable_product_with_price_on_second_website_rollback.php │ │ │ │ │ │ ├── configurable_product_with_two_child_products.php │ │ │ │ │ │ ├── configurable_product_with_two_child_products_rollback.php │ │ │ │ │ │ ├── configurable_products.php │ │ │ │ │ │ ├── configurable_products_rollback.php │ │ │ │ │ │ ├── configurable_products_with_different_super_attribute.php │ │ │ │ │ │ ├── configurable_products_with_different_super_attribute_rollback.php │ │ │ │ │ │ ├── configurable_products_with_two_attributes.php │ │ │ │ │ │ ├── configurable_products_with_two_attributes_combination.php │ │ │ │ │ │ ├── configurable_products_with_two_attributes_combination_rollback.php │ │ │ │ │ │ ├── configurable_products_with_two_attributes_rollback.php │ │ │ │ │ │ ├── customer_quote_with_items_configurable_product.php │ │ │ │ │ │ ├── customer_quote_with_items_configurable_product_rollback.php │ │ │ │ │ │ ├── delete_association.php │ │ │ │ │ │ ├── magento_image.jpg │ │ │ │ │ │ ├── order_item_with_configurable_and_options.php │ │ │ │ │ │ ├── order_item_with_configurable_and_options_rollback.php │ │ │ │ │ │ ├── product_configurable.php │ │ │ │ │ │ ├── product_configurable_12345.php │ │ │ │ │ │ ├── product_configurable_12345_rollback.php │ │ │ │ │ │ ├── product_configurable_custom.php │ │ │ │ │ │ ├── product_configurable_custom_rollback.php │ │ │ │ │ │ ├── product_configurable_disable_first_child.php │ │ │ │ │ │ ├── product_configurable_disable_first_child_rollback.php │ │ │ │ │ │ ├── product_configurable_in_multiple_websites.php │ │ │ │ │ │ ├── product_configurable_in_multiple_websites_rollback.php │ │ │ │ │ │ ├── product_configurable_rollback.php │ │ │ │ │ │ ├── product_configurable_sku.php │ │ │ │ │ │ ├── product_configurable_sku_rollback.php │ │ │ │ │ │ ├── product_configurable_with_assigned_simples.php │ │ │ │ │ │ ├── product_configurable_with_assigned_simples_rollback.php │ │ │ │ │ │ ├── product_configurable_with_category_and_weight.php │ │ │ │ │ │ ├── product_configurable_with_category_and_weight_rollback.php │ │ │ │ │ │ ├── product_configurable_with_custom_option_dropdown.php │ │ │ │ │ │ ├── product_configurable_with_custom_option_dropdown_rollback.php │ │ │ │ │ │ ├── product_configurable_with_custom_option_type_text.php │ │ │ │ │ │ ├── product_configurable_with_custom_option_type_text_rollback.php │ │ │ │ │ │ ├── product_configurable_with_frontend_label_attribute.php │ │ │ │ │ │ ├── product_configurable_with_frontend_label_attribute_rollback.php │ │ │ │ │ │ ├── product_configurable_with_media_gallery_video.php │ │ │ │ │ │ ├── product_configurable_with_media_gallery_video_rollback.php │ │ │ │ │ │ ├── product_configurable_with_metadescription.php │ │ │ │ │ │ ├── product_configurable_with_metadescription_rollback.php │ │ │ │ │ │ ├── product_configurable_zero_qty_first_child.php │ │ │ │ │ │ ├── product_configurable_zero_qty_first_child_rollback.php │ │ │ │ │ │ ├── product_simple_77.php │ │ │ │ │ │ ├── product_simple_77_rollback.php │ │ │ │ │ │ ├── quote_with_configurable_product.php │ │ │ │ │ │ ├── quote_with_configurable_product_last_variation.php │ │ │ │ │ │ ├── quote_with_configurable_product_last_variation_rollback.php │ │ │ │ │ │ ├── quote_with_configurable_product_rollback.php │ │ │ │ │ │ ├── restricted_admin_with_catalog_permissions.php │ │ │ │ │ │ ├── restricted_admin_with_catalog_permissions_rollback.php │ │ │ │ │ │ ├── tax_rule.php │ │ │ │ │ │ └── tax_rule_rollback.php │ │ │ │ │ └── etc │ │ │ │ │ │ └── extension_attributes.xml │ │ │ │ │ ├── Contact │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── IndexTest.php │ │ │ │ │ ├── Helper │ │ │ │ │ │ └── DataTest.php │ │ │ │ │ └── Model │ │ │ │ │ │ └── ConfigTest.php │ │ │ │ │ ├── Cookie │ │ │ │ │ └── Model │ │ │ │ │ │ └── Config │ │ │ │ │ │ └── Backend │ │ │ │ │ │ ├── DomainTest.php │ │ │ │ │ │ ├── LifetimeTest.php │ │ │ │ │ │ └── PathTest.php │ │ │ │ │ ├── Cron │ │ │ │ │ ├── Model │ │ │ │ │ │ └── ScheduleTest.php │ │ │ │ │ └── Observer │ │ │ │ │ │ └── ProcessCronQueueObserverTest.php │ │ │ │ │ ├── Csp │ │ │ │ │ ├── CachedBlockTest.php │ │ │ │ │ ├── CspAwareActionTest.php │ │ │ │ │ ├── CspTest.php │ │ │ │ │ ├── CspUtilTest.php │ │ │ │ │ ├── Helper │ │ │ │ │ │ └── InlineUtilTest.php │ │ │ │ │ └── Model │ │ │ │ │ │ ├── Collector │ │ │ │ │ │ ├── ConfigCollectorTest.php │ │ │ │ │ │ ├── ControllerCollectorTest.php │ │ │ │ │ │ ├── CspWhitelistXmlCollectorTest.php │ │ │ │ │ │ └── DynamicCollectorMock.php │ │ │ │ │ │ ├── CompositePolicyCollectorTest.php │ │ │ │ │ │ ├── Mode │ │ │ │ │ │ └── ConfigManagerTest.php │ │ │ │ │ │ └── Policy │ │ │ │ │ │ └── Renderer │ │ │ │ │ │ └── SimplePolicyHeaderRendererTest.php │ │ │ │ │ ├── CurrencySymbol │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── System │ │ │ │ │ │ │ ├── Currency │ │ │ │ │ │ │ ├── FetchRatesTest.php │ │ │ │ │ │ │ ├── IndexTest.php │ │ │ │ │ │ │ └── SaveRatesTest.php │ │ │ │ │ │ │ └── Currencysymbol │ │ │ │ │ │ │ ├── IndexTest.php │ │ │ │ │ │ │ └── SaveTest.php │ │ │ │ │ └── Model │ │ │ │ │ │ └── System │ │ │ │ │ │ └── CurrencysymbolTest.php │ │ │ │ │ ├── Customer │ │ │ │ │ ├── Api │ │ │ │ │ │ └── AddressRepositoryTest.php │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── Account │ │ │ │ │ │ │ ├── AuthenticationPopupTest.php │ │ │ │ │ │ │ ├── Dashboard │ │ │ │ │ │ │ │ ├── AddressTest.php │ │ │ │ │ │ │ │ └── InfoTest.php │ │ │ │ │ │ │ ├── DashboardTest.php │ │ │ │ │ │ │ └── ResetPasswordTest.php │ │ │ │ │ │ ├── Address │ │ │ │ │ │ │ ├── BookTest.php │ │ │ │ │ │ │ ├── EditTest.php │ │ │ │ │ │ │ ├── GridTest.php │ │ │ │ │ │ │ └── Renderer │ │ │ │ │ │ │ │ └── DefaultRendererTest.php │ │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ │ ├── Edit │ │ │ │ │ │ │ │ ├── OrderButtonTest.php │ │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ │ │ ├── AbstractCartTest.php │ │ │ │ │ │ │ │ │ ├── Cart │ │ │ │ │ │ │ │ │ ├── CartBundleTest.php │ │ │ │ │ │ │ │ │ ├── CartConfigurableTest.php │ │ │ │ │ │ │ │ │ ├── CollectionTest.php │ │ │ │ │ │ │ │ │ └── StoreSwitcherTest.php │ │ │ │ │ │ │ │ │ ├── CartTest.php │ │ │ │ │ │ │ │ │ ├── CartsTest.php │ │ │ │ │ │ │ │ │ ├── NewsletterTest.php │ │ │ │ │ │ │ │ │ ├── Orders │ │ │ │ │ │ │ │ │ └── RenderOrdersTabTest.php │ │ │ │ │ │ │ │ │ ├── OrdersTest.php │ │ │ │ │ │ │ │ │ ├── View │ │ │ │ │ │ │ │ │ ├── CartTest.php │ │ │ │ │ │ │ │ │ ├── Grid │ │ │ │ │ │ │ │ │ │ └── Renderer │ │ │ │ │ │ │ │ │ │ │ ├── AbstractItemTest.php │ │ │ │ │ │ │ │ │ │ │ ├── Item │ │ │ │ │ │ │ │ │ │ │ └── ItemConfigurableTest.php │ │ │ │ │ │ │ │ │ │ │ └── ItemTest.php │ │ │ │ │ │ │ │ │ ├── PersonalInfoTest.php │ │ │ │ │ │ │ │ │ ├── SalesTest.php │ │ │ │ │ │ │ │ │ └── WishlistTest.php │ │ │ │ │ │ │ │ │ └── ViewTest.php │ │ │ │ │ │ │ ├── EditTest.php │ │ │ │ │ │ │ ├── Grid │ │ │ │ │ │ │ │ └── Renderer │ │ │ │ │ │ │ │ │ ├── AbstractMultiactionTest.php │ │ │ │ │ │ │ │ │ ├── Multiaction │ │ │ │ │ │ │ │ │ ├── MultiactionBundleTest.php │ │ │ │ │ │ │ │ │ └── MultiactionConfigurableTest.php │ │ │ │ │ │ │ │ │ └── MultiactionTest.php │ │ │ │ │ │ │ └── Group │ │ │ │ │ │ │ │ ├── Edit │ │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ │ │ │ └── EditTest.php │ │ │ │ │ │ ├── Form │ │ │ │ │ │ │ ├── LoginTest.php │ │ │ │ │ │ │ └── RegisterTest.php │ │ │ │ │ │ ├── NewsletterTest.php │ │ │ │ │ │ └── Widget │ │ │ │ │ │ │ ├── CompanyTest.php │ │ │ │ │ │ │ ├── DobTest.php │ │ │ │ │ │ │ ├── FaxTest.php │ │ │ │ │ │ │ ├── GenderTest.php │ │ │ │ │ │ │ ├── NameTest.php │ │ │ │ │ │ │ ├── TaxvatTest.php │ │ │ │ │ │ │ └── TelephoneTest.php │ │ │ │ │ ├── Console │ │ │ │ │ │ └── Command │ │ │ │ │ │ │ └── UpgradeHashAlgorithmCommandTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── Account │ │ │ │ │ │ │ ├── CreatePostTest.php │ │ │ │ │ │ │ ├── EmailTemplateTest.php │ │ │ │ │ │ │ └── LoginPostTest.php │ │ │ │ │ │ ├── AccountTest.php │ │ │ │ │ │ ├── Address │ │ │ │ │ │ │ ├── Delete │ │ │ │ │ │ │ │ └── DeleteAddressTest.php │ │ │ │ │ │ │ └── FormPost │ │ │ │ │ │ │ │ ├── CreateAddressTest.php │ │ │ │ │ │ │ │ └── UpdateAddressTest.php │ │ │ │ │ │ ├── AddressTest.php │ │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ │ ├── Address │ │ │ │ │ │ │ │ └── SaveTest.php │ │ │ │ │ │ │ ├── Cart │ │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ │ │ └── Composite │ │ │ │ │ │ │ │ │ └── Cart │ │ │ │ │ │ │ │ │ ├── ConfigureTest.php │ │ │ │ │ │ │ │ │ └── UpdateTest.php │ │ │ │ │ │ │ ├── Customer │ │ │ │ │ │ │ │ └── InvalidateTokenTest.php │ │ │ │ │ │ │ ├── GroupTest.php │ │ │ │ │ │ │ ├── Index │ │ │ │ │ │ │ │ ├── CartTest.php │ │ │ │ │ │ │ │ ├── DeleteTest.php │ │ │ │ │ │ │ │ ├── InlineEditTest.php │ │ │ │ │ │ │ │ ├── MassAssignGroupTest.php │ │ │ │ │ │ │ │ ├── MassDeleteTest.php │ │ │ │ │ │ │ │ ├── MassSubscribeTest.php │ │ │ │ │ │ │ │ ├── MassUnsubscribeTest.php │ │ │ │ │ │ │ │ ├── ResetPasswordTest.php │ │ │ │ │ │ │ │ ├── SaveTest.php │ │ │ │ │ │ │ │ └── ValidateTest.php │ │ │ │ │ │ │ ├── IndexTest.php │ │ │ │ │ │ │ └── Wishlist │ │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ │ └── Composite │ │ │ │ │ │ │ │ └── Wishlist │ │ │ │ │ │ │ │ └── UpdateTest.php │ │ │ │ │ │ ├── AjaxLoginTest.php │ │ │ │ │ │ ├── AuthenticationTest.php │ │ │ │ │ │ ├── CreatePasswordTest.php │ │ │ │ │ │ ├── ForgotPasswordPostTest.php │ │ │ │ │ │ ├── Section │ │ │ │ │ │ │ └── LoadTest.php │ │ │ │ │ │ └── SendTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── address_data.php │ │ │ │ │ │ ├── customer_2_addresses.php │ │ │ │ │ │ ├── customer_2_addresses_rollback.php │ │ │ │ │ │ ├── customer_sec_website.php │ │ │ │ │ │ ├── customer_sec_website_2_addresses.php │ │ │ │ │ │ ├── customer_sec_website_2_addresses_rollback.php │ │ │ │ │ │ └── customer_sec_website_rollback.php │ │ │ │ │ ├── Helper │ │ │ │ │ │ ├── AddressTest.php │ │ │ │ │ │ └── ViewTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── AccountManagement │ │ │ │ │ │ │ ├── AuthenticateTest.php │ │ │ │ │ │ │ ├── CreateAccountTest.php │ │ │ │ │ │ │ ├── CreateAccountWithAddressTest.php │ │ │ │ │ │ │ ├── ForgotPasswordTest.php │ │ │ │ │ │ │ ├── ResetPasswordTest.php │ │ │ │ │ │ │ └── ValidateTest.php │ │ │ │ │ │ ├── AccountManagementTest.php │ │ │ │ │ │ ├── Address │ │ │ │ │ │ │ ├── CreateAddressTest.php │ │ │ │ │ │ │ ├── DeleteAddressTest.php │ │ │ │ │ │ │ └── UpdateAddressTest.php │ │ │ │ │ │ ├── AddressMetadataTest.php │ │ │ │ │ │ ├── AddressRegistryTest.php │ │ │ │ │ │ ├── AddressTest.php │ │ │ │ │ │ ├── AttributeTest.php │ │ │ │ │ │ ├── AuthenticationTest.php │ │ │ │ │ │ ├── Checkout │ │ │ │ │ │ │ └── ConfigProviderTest.php │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ ├── ShareTest.php │ │ │ │ │ │ │ └── Source │ │ │ │ │ │ │ │ ├── Group │ │ │ │ │ │ │ │ └── MultiselectTest.php │ │ │ │ │ │ │ │ └── GroupTest.php │ │ │ │ │ │ ├── CustomerAddressAttributeTest.php │ │ │ │ │ │ ├── CustomerMetadataTest.php │ │ │ │ │ │ ├── CustomerRegistryTest.php │ │ │ │ │ │ ├── CustomerTest.php │ │ │ │ │ │ ├── EmailNotificationTest.php │ │ │ │ │ │ ├── FileResolverStub.php │ │ │ │ │ │ ├── ForgotPasswordToken │ │ │ │ │ │ │ ├── ConfirmCustomerByTokenTest.php │ │ │ │ │ │ │ └── GetCustomerByTokenTest.php │ │ │ │ │ │ ├── FormTest.php │ │ │ │ │ │ ├── GroupManagementTest.php │ │ │ │ │ │ ├── GroupRegistryTest.php │ │ │ │ │ │ ├── GroupTest.php │ │ │ │ │ │ ├── Metadata │ │ │ │ │ │ │ ├── Form │ │ │ │ │ │ │ │ └── ImageTest.php │ │ │ │ │ │ │ ├── FormFactoryTest.php │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ │ ├── OptionsTest.php │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ │ ├── Address │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ ├── AddressRepositoryTest.php │ │ │ │ │ │ │ ├── Customer │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ ├── CustomerRepository │ │ │ │ │ │ │ │ ├── CreateAddressTest.php │ │ │ │ │ │ │ │ ├── DeleteAddressTest.php │ │ │ │ │ │ │ │ └── UpdateAddressTest.php │ │ │ │ │ │ │ ├── CustomerRepositoryTest.php │ │ │ │ │ │ │ ├── Grid │ │ │ │ │ │ │ │ ├── CollectionReindexOnAccountLockTest.php │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ ├── Group │ │ │ │ │ │ │ │ └── Grid │ │ │ │ │ │ │ │ │ └── ServiceCollectionTest.php │ │ │ │ │ │ │ └── GroupRepositoryTest.php │ │ │ │ │ │ ├── SessionTest.php │ │ │ │ │ │ └── VisitorTest.php │ │ │ │ │ ├── Ui │ │ │ │ │ │ └── Component │ │ │ │ │ │ │ ├── DataProviderTest.php │ │ │ │ │ │ │ └── Listing │ │ │ │ │ │ │ ├── Address │ │ │ │ │ │ │ └── DataProviderTest.php │ │ │ │ │ │ │ └── AttributeRepositoryTest.php │ │ │ │ │ ├── _files │ │ │ │ │ │ ├── attribute_city_store_label_address.php │ │ │ │ │ │ ├── attribute_user_defined_address.php │ │ │ │ │ │ ├── attribute_user_defined_address_custom_attribute.php │ │ │ │ │ │ ├── attribute_user_defined_address_custom_attribute_rollback.php │ │ │ │ │ │ ├── attribute_user_defined_address_rollback.php │ │ │ │ │ │ ├── attribute_user_defined_custom_attribute.php │ │ │ │ │ │ ├── attribute_user_defined_custom_attribute_rollback.php │ │ │ │ │ │ ├── attribute_user_defined_customer.php │ │ │ │ │ │ ├── attribute_user_defined_customer_rollback.php │ │ │ │ │ │ ├── attribute_user_fullname.php │ │ │ │ │ │ ├── customer.php │ │ │ │ │ │ ├── customer_address.php │ │ │ │ │ │ ├── customer_address_rollback.php │ │ │ │ │ │ ├── customer_confirmation_config_disable.php │ │ │ │ │ │ ├── customer_confirmation_config_disable_rollback.php │ │ │ │ │ │ ├── customer_confirmation_config_enable.php │ │ │ │ │ │ ├── customer_confirmation_config_enable_rollback.php │ │ │ │ │ │ ├── customer_confirmation_email_address_with_special_chars.php │ │ │ │ │ │ ├── customer_confirmation_email_address_with_special_chars_rollback.php │ │ │ │ │ │ ├── customer_confirmation_email_template.php │ │ │ │ │ │ ├── customer_confirmation_email_template_rollback.php │ │ │ │ │ │ ├── customer_confirmed_email_template.php │ │ │ │ │ │ ├── customer_confirmed_email_template_rollback.php │ │ │ │ │ │ ├── customer_for_second_store.php │ │ │ │ │ │ ├── customer_for_second_store_rollback.php │ │ │ │ │ │ ├── customer_for_second_website.php │ │ │ │ │ │ ├── customer_for_second_website_rollback.php │ │ │ │ │ │ ├── customer_for_second_website_with_address.php │ │ │ │ │ │ ├── customer_for_second_website_with_address_rollback.php │ │ │ │ │ │ ├── customer_from_repository.php │ │ │ │ │ │ ├── customer_grid_indexer_enabled_update_on_schedule.php │ │ │ │ │ │ ├── customer_grid_indexer_enabled_update_on_schedule_rollback.php │ │ │ │ │ │ ├── customer_group.php │ │ │ │ │ │ ├── customer_group_rollback.php │ │ │ │ │ │ ├── customer_no_address.php │ │ │ │ │ │ ├── customer_no_address_rollback.php │ │ │ │ │ │ ├── customer_no_password.php │ │ │ │ │ │ ├── customer_non_default_website_id.php │ │ │ │ │ │ ├── customer_non_default_website_id_rollback.php │ │ │ │ │ │ ├── customer_one_address.php │ │ │ │ │ │ ├── customer_one_address_rollback.php │ │ │ │ │ │ ├── customer_password_email_template.html │ │ │ │ │ │ ├── customer_primary_addresses.php │ │ │ │ │ │ ├── customer_rollback.php │ │ │ │ │ │ ├── customer_rp_token.php │ │ │ │ │ │ ├── customer_sample.php │ │ │ │ │ │ ├── customer_two_addresses.php │ │ │ │ │ │ ├── customer_two_addresses_rollback.php │ │ │ │ │ │ ├── customer_welcome_email_template.php │ │ │ │ │ │ ├── customer_welcome_email_template_rollback.php │ │ │ │ │ │ ├── customer_welcome_no_password_email_template.php │ │ │ │ │ │ ├── customer_welcome_no_password_email_template_rollback.php │ │ │ │ │ │ ├── customer_with_addresses.php │ │ │ │ │ │ ├── customer_with_addresses_rollback.php │ │ │ │ │ │ ├── customer_with_uk_address.php │ │ │ │ │ │ ├── customer_with_uk_address_rollback.php │ │ │ │ │ │ ├── customer_with_website.php │ │ │ │ │ │ ├── customer_with_website_rollback.php │ │ │ │ │ │ ├── customer_without_addresses.php │ │ │ │ │ │ ├── customer_without_addresses_rollback.php │ │ │ │ │ │ ├── etc │ │ │ │ │ │ │ └── extension_attributes.xml │ │ │ │ │ │ ├── expired_lock_for_customer.php │ │ │ │ │ │ ├── expired_lock_for_customer_rollback.php │ │ │ │ │ │ ├── five_repository_customers.php │ │ │ │ │ │ ├── five_repository_customers_rollback.php │ │ │ │ │ │ ├── image │ │ │ │ │ │ │ └── magento.jpg │ │ │ │ │ │ ├── import_export │ │ │ │ │ │ │ ├── customer.php │ │ │ │ │ │ │ ├── customer_with_addresses.php │ │ │ │ │ │ │ ├── customers.php │ │ │ │ │ │ │ ├── customers_for_address_import.php │ │ │ │ │ │ │ ├── customers_rollback.php │ │ │ │ │ │ │ ├── customers_with_websites.php │ │ │ │ │ │ │ └── customers_with_websites_rollback.php │ │ │ │ │ │ ├── inactive_customer.php │ │ │ │ │ │ ├── locked_customer.php │ │ │ │ │ │ ├── locked_customer_rollback.php │ │ │ │ │ │ ├── new_customer.php │ │ │ │ │ │ ├── new_customer_rollback.php │ │ │ │ │ │ ├── quote.php │ │ │ │ │ │ ├── quote_rollback.php │ │ │ │ │ │ ├── three_customers.php │ │ │ │ │ │ ├── three_customers_rollback.php │ │ │ │ │ │ ├── twenty_one_customers.php │ │ │ │ │ │ ├── two_customers.php │ │ │ │ │ │ ├── two_customers_rollback.php │ │ │ │ │ │ ├── two_customers_with_different_customer_groups.php │ │ │ │ │ │ ├── two_customers_with_different_customer_groups_rollback.php │ │ │ │ │ │ ├── unconfirmed_customer.php │ │ │ │ │ │ └── unconfirmed_customer_rollback.php │ │ │ │ │ └── etc │ │ │ │ │ │ └── extension_attributes.xml │ │ │ │ │ ├── CustomerGraphQl │ │ │ │ │ ├── Model │ │ │ │ │ │ └── Resolver │ │ │ │ │ │ │ └── CreateCustomerTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── french │ │ │ │ │ │ └── fr_fr │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ ├── website_store_with_store_view.php │ │ │ │ │ │ └── website_store_with_store_view_rollback.php │ │ │ │ │ ├── CustomerImportExport │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Export │ │ │ │ │ │ │ ├── AddressTest.php │ │ │ │ │ │ │ └── CustomerTest.php │ │ │ │ │ │ └── Import │ │ │ │ │ │ │ ├── AddressTest.php │ │ │ │ │ │ │ ├── CustomerCompositeTest.php │ │ │ │ │ │ │ ├── CustomerTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── address_import_delete.csv │ │ │ │ │ │ │ ├── address_import_update.csv │ │ │ │ │ │ │ ├── customer_composite_delete.csv │ │ │ │ │ │ │ ├── customer_composite_update.csv │ │ │ │ │ │ │ ├── customer_to_import_with_one_additional_column.csv │ │ │ │ │ │ │ ├── customers_to_delete.csv │ │ │ │ │ │ │ ├── customers_to_import.csv │ │ │ │ │ │ │ ├── customers_to_update.csv │ │ │ │ │ │ │ ├── customers_with_gender_to_import.csv │ │ │ │ │ │ │ ├── import_uk_address.csv │ │ │ │ │ │ │ └── two_addresses_import_update.csv │ │ │ │ │ └── _files │ │ │ │ │ │ ├── two_addresses.php │ │ │ │ │ │ └── two_addresses_rollback.php │ │ │ │ │ ├── Deploy │ │ │ │ │ ├── Console │ │ │ │ │ │ └── Command │ │ │ │ │ │ │ └── App │ │ │ │ │ │ │ ├── ApplicationDumpCommandTest.php │ │ │ │ │ │ │ ├── ConfigImportCommand │ │ │ │ │ │ │ ├── IntegrationTestImporter.php │ │ │ │ │ │ │ └── IntegrationTestSecondImporter.php │ │ │ │ │ │ │ ├── ConfigImportCommandTest.php │ │ │ │ │ │ │ └── SensitiveConfigSetCommandTest.php │ │ │ │ │ ├── DeployTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── _config.local.php │ │ │ │ │ │ ├── config.php │ │ │ │ │ │ ├── config_data.php │ │ │ │ │ │ ├── lib │ │ │ │ │ │ └── web │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── map.php │ │ │ │ │ │ ├── requirejs-map.js │ │ │ │ │ │ ├── scopes │ │ │ │ │ │ ├── config_with_changed_stores.php │ │ │ │ │ │ ├── config_with_removed_stores.php │ │ │ │ │ │ └── config_with_stores.php │ │ │ │ │ │ ├── theme.php │ │ │ │ │ │ ├── theme_rollback.php │ │ │ │ │ │ ├── zoom1 │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── LICENSE_AFL.txt │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ ├── etc │ │ │ │ │ │ │ └── view.xml │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ └── web │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── root.less │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── logo-magento-1.png │ │ │ │ │ │ │ ├── logo-magento-2.png │ │ │ │ │ │ │ └── logo-magento-3.png │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── file1.js │ │ │ │ │ │ │ ├── file2.js │ │ │ │ │ │ │ ├── file3.js │ │ │ │ │ │ │ └── file4.js │ │ │ │ │ │ ├── zoom2 │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── LICENSE_AFL.txt │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ ├── etc │ │ │ │ │ │ │ └── view.xml │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ └── web │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── _testA.less │ │ │ │ │ │ │ ├── _testB.less │ │ │ │ │ │ │ └── root.less │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ └── logo-magento-2.png │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── file2.js │ │ │ │ │ │ └── zoom3 │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ ├── etc │ │ │ │ │ │ └── view.xml │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ └── web │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── _testA.less │ │ │ │ │ │ └── local.css │ │ │ │ │ │ ├── images │ │ │ │ │ │ └── logo-magento-3.png │ │ │ │ │ │ └── js │ │ │ │ │ │ └── file3.js │ │ │ │ │ ├── Developer │ │ │ │ │ ├── Console │ │ │ │ │ │ └── Command │ │ │ │ │ │ │ └── SourceThemeDeployCommandTest.php │ │ │ │ │ ├── Helper │ │ │ │ │ │ └── DataTest.php │ │ │ │ │ └── Model │ │ │ │ │ │ ├── Config │ │ │ │ │ │ └── Backend │ │ │ │ │ │ │ └── AllowedIpsTest.php │ │ │ │ │ │ └── Logger │ │ │ │ │ │ └── Handler │ │ │ │ │ │ └── DebugTest.php │ │ │ │ │ ├── Dhl │ │ │ │ │ ├── Block │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── UnitofmeasureTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ └── CarrierTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── SingleknownTrackResponse-no-data-found.xml │ │ │ │ │ │ ├── Track-res-XML-Parse-Err.xml │ │ │ │ │ │ ├── TrackingRequest_MultipleAWB.xml │ │ │ │ │ │ ├── TrackingRequest_SingleAWB.xml │ │ │ │ │ │ ├── TrackingResponse_MultipleAWB.xml │ │ │ │ │ │ ├── TrackingResponse_SingleAWB.xml │ │ │ │ │ │ ├── dhl_quote_response.xml │ │ │ │ │ │ ├── domestic_shipment_request.xml │ │ │ │ │ │ ├── response_shipping_label.xml │ │ │ │ │ │ └── shipment_request.xml │ │ │ │ │ ├── Directory │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── CurrencyTest.php │ │ │ │ │ │ └── DataTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── Json │ │ │ │ │ │ │ └── CountryRegionTest.php │ │ │ │ │ ├── Helper │ │ │ │ │ │ └── DataTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Country │ │ │ │ │ │ │ └── Postcode │ │ │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ │ └── ReaderTest.php │ │ │ │ │ │ │ │ └── ValidatorTest.php │ │ │ │ │ │ ├── CurrencyConfigTest.php │ │ │ │ │ │ └── RegionTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── example_region_in_country.php │ │ │ │ │ │ ├── example_region_in_country_rollback.php │ │ │ │ │ │ ├── region_name_jp.php │ │ │ │ │ │ ├── region_name_jp_rollback.php │ │ │ │ │ │ ├── usd_cny_rate.php │ │ │ │ │ │ ├── usd_cny_rate_rollback.php │ │ │ │ │ │ ├── usd_uah_rate.php │ │ │ │ │ │ └── usd_uah_rate_rollback.php │ │ │ │ │ ├── Downloadable │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── Account │ │ │ │ │ │ │ └── LinkTest.php │ │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ │ └── Catalog │ │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ │ └── Edit │ │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ │ └── Downloadable │ │ │ │ │ │ │ │ ├── LinksTest.php │ │ │ │ │ │ │ │ └── SamplesTest.php │ │ │ │ │ │ └── Customer │ │ │ │ │ │ │ └── Products │ │ │ │ │ │ │ └── ListProductsTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ │ ├── Downloadable │ │ │ │ │ │ │ │ └── FileTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ └── sample.txt │ │ │ │ │ │ └── ProductTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Observer │ │ │ │ │ │ │ └── SetLinkStatusObserverTest.php │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ └── TypeTest.php │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ │ └── Indexer │ │ │ │ │ │ │ │ └── PriceTest.php │ │ │ │ │ │ └── Url │ │ │ │ │ │ │ └── DomainValidatorTest.php │ │ │ │ │ ├── _files │ │ │ │ │ │ ├── customer_order_with_downloadable_product.php │ │ │ │ │ │ ├── customer_order_with_downloadable_product_rollback.php │ │ │ │ │ │ ├── customer_order_with_invoice_downloadable_product.php │ │ │ │ │ │ ├── customer_order_with_invoice_downloadable_product_rollback.php │ │ │ │ │ │ ├── downloadable_product_with_files_and_sample_url.php │ │ │ │ │ │ ├── downloadable_product_with_files_and_sample_url_rollback.php │ │ │ │ │ │ ├── order_item_with_downloadable_and_options.php │ │ │ │ │ │ ├── order_item_with_downloadable_and_options_rollback.php │ │ │ │ │ │ ├── order_with_customer_and_downloadable_product.php │ │ │ │ │ │ ├── order_with_customer_and_downloadable_product_rollback.php │ │ │ │ │ │ ├── order_with_customer_and_downloadable_product_with_multiple_links.php │ │ │ │ │ │ ├── order_with_customer_and_downloadable_product_with_multiple_links_rollback.php │ │ │ │ │ │ ├── order_with_downloadable_product.php │ │ │ │ │ │ ├── order_with_downloadable_product_rollback.php │ │ │ │ │ │ ├── order_with_downloadable_product_with_additional_options.php │ │ │ │ │ │ ├── order_with_downloadable_product_with_additional_options_rollback.php │ │ │ │ │ │ ├── product_downloadable.php │ │ │ │ │ │ ├── product_downloadable_rollback.php │ │ │ │ │ │ ├── product_downloadable_with_custom_options.php │ │ │ │ │ │ ├── product_downloadable_with_custom_options_rollback.php │ │ │ │ │ │ ├── product_downloadable_with_download_limit.php │ │ │ │ │ │ ├── product_downloadable_with_download_limit_rollback.php │ │ │ │ │ │ ├── product_downloadable_with_files.php │ │ │ │ │ │ ├── product_downloadable_with_files_rollback.php │ │ │ │ │ │ ├── product_downloadable_with_link_url_and_sample_url.php │ │ │ │ │ │ ├── product_downloadable_with_link_url_and_sample_url_rollback.php │ │ │ │ │ │ ├── product_downloadable_with_purchased_separately_links.php │ │ │ │ │ │ ├── product_downloadable_with_purchased_separately_links_rollback.php │ │ │ │ │ │ ├── product_downloadable_without_purchased_separately_links.php │ │ │ │ │ │ ├── product_downloadable_without_purchased_separately_links_rollback.php │ │ │ │ │ │ ├── quote_with_downloadable_product.php │ │ │ │ │ │ ├── quote_with_downloadable_product_rollback.php │ │ │ │ │ │ └── test_image.jpg │ │ │ │ │ └── etc │ │ │ │ │ │ └── extension_attributes.xml │ │ │ │ │ ├── DownloadableImportExport │ │ │ │ │ └── Model │ │ │ │ │ │ ├── DownloadableTest.php │ │ │ │ │ │ └── Import │ │ │ │ │ │ ├── Product │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ └── DownloadableTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ └── import_downloadable.csv │ │ │ │ │ ├── Eav │ │ │ │ │ ├── Block │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── Attribute │ │ │ │ │ │ │ └── Edit │ │ │ │ │ │ │ └── Main │ │ │ │ │ │ │ └── AbstractMainTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ └── Attribute │ │ │ │ │ │ │ ├── Save │ │ │ │ │ │ │ └── InputType │ │ │ │ │ │ │ │ ├── DateTest.php │ │ │ │ │ │ │ │ ├── DateTimeTest.php │ │ │ │ │ │ │ │ ├── DropDownTest.php │ │ │ │ │ │ │ │ ├── MultipleSelectTest.php │ │ │ │ │ │ │ │ ├── TextAreaTest.php │ │ │ │ │ │ │ │ ├── TextEditorTest.php │ │ │ │ │ │ │ │ ├── TextTest.php │ │ │ │ │ │ │ │ └── YesNoTest.php │ │ │ │ │ │ │ └── Update │ │ │ │ │ │ │ └── InputType │ │ │ │ │ │ │ ├── DateTest.php │ │ │ │ │ │ │ ├── DateTimeTest.php │ │ │ │ │ │ │ ├── DropDownTest.php │ │ │ │ │ │ │ ├── MultipleSelectTest.php │ │ │ │ │ │ │ ├── TextAreaTest.php │ │ │ │ │ │ │ ├── TextEditorTest.php │ │ │ │ │ │ │ ├── TextTest.php │ │ │ │ │ │ │ └── YesNoTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ │ └── GroupRepositoryTest.php │ │ │ │ │ │ ├── AttributeManagementTest.php │ │ │ │ │ │ ├── AttributeRepositoryTest.php │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ ├── Entity │ │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ │ │ └── Frontend │ │ │ │ │ │ │ │ │ └── DefaultFrontendTest.php │ │ │ │ │ │ │ ├── AttributeLoaderTest.php │ │ │ │ │ │ │ └── AttributeTest.php │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ │ ├── AttributeLoaderTest.php │ │ │ │ │ │ │ ├── Entity │ │ │ │ │ │ │ │ └── Attribute │ │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ └── UpdateHandlerTest.php │ │ │ │ │ │ ├── TypeLocatorTest.php │ │ │ │ │ │ └── Validator │ │ │ │ │ │ │ └── Attribute │ │ │ │ │ │ │ └── BackendTest.php │ │ │ │ │ ├── Setup │ │ │ │ │ │ ├── AddOptionToAttributeTest.php │ │ │ │ │ │ └── EavSetupTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── attribute_for_caching.php │ │ │ │ │ │ ├── attribute_for_caching_rollback.php │ │ │ │ │ │ ├── attribute_for_search.php │ │ │ │ │ │ ├── attribute_group_for_search.php │ │ │ │ │ │ ├── attribute_set_for_search.php │ │ │ │ │ │ ├── attribute_set_for_search_rollback.php │ │ │ │ │ │ ├── attribute_with_options.php │ │ │ │ │ │ ├── attribute_with_options_rollback.php │ │ │ │ │ │ ├── empty_attribute_set.php │ │ │ │ │ │ ├── empty_attribute_set_rollback.php │ │ │ │ │ │ ├── product_texteditor_attribute.php │ │ │ │ │ │ └── product_texteditor_attribute_rollback.php │ │ │ │ │ ├── Elasticsearch │ │ │ │ │ ├── Catalog │ │ │ │ │ │ └── Model │ │ │ │ │ │ │ └── Indexer │ │ │ │ │ │ │ └── Category │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ └── Action │ │ │ │ │ │ │ └── RowsTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ │ └── Category │ │ │ │ │ │ │ │ └── SaveTest.php │ │ │ │ │ │ └── QuickSearchTest.php │ │ │ │ │ ├── Elasticsearch5 │ │ │ │ │ │ └── SearchAdapter │ │ │ │ │ │ │ └── AdapterTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Adapter │ │ │ │ │ │ │ ├── BatchDataMapper │ │ │ │ │ │ │ │ └── ProductDataMapperTest.php │ │ │ │ │ │ │ └── ElasticsearchTest.php │ │ │ │ │ │ ├── CatalogSearch │ │ │ │ │ │ │ └── AdvancedTest.php │ │ │ │ │ │ ├── Client │ │ │ │ │ │ │ └── ElasticsearchTest.php │ │ │ │ │ │ └── Indexer │ │ │ │ │ │ │ ├── Fulltext │ │ │ │ │ │ │ └── Plugin │ │ │ │ │ │ │ │ └── Category │ │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ │ └── AttributeTest.php │ │ │ │ │ │ │ ├── IndexHandlerTest.php │ │ │ │ │ │ │ └── ReindexAllTest.php │ │ │ │ │ ├── SearchAdapter │ │ │ │ │ │ └── AdapterTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── case_sensitive.php │ │ │ │ │ │ ├── case_sensitive_rollback.php │ │ │ │ │ │ ├── configurable_attribute.php │ │ │ │ │ │ ├── configurable_attribute_rollback.php │ │ │ │ │ │ ├── configurable_products.php │ │ │ │ │ │ ├── configurable_products_rollback.php │ │ │ │ │ │ ├── indexer.php │ │ │ │ │ │ ├── indexer_rollback.php │ │ │ │ │ │ ├── multiselect_attribute.php │ │ │ │ │ │ ├── multiselect_attribute_rollback.php │ │ │ │ │ │ ├── products_for_search.php │ │ │ │ │ │ ├── products_for_search_rollback.php │ │ │ │ │ │ ├── requests.xml │ │ │ │ │ │ ├── select_attribute.php │ │ │ │ │ │ ├── select_attribute_rollback.php │ │ │ │ │ │ ├── select_attribute_store_labels.php │ │ │ │ │ │ └── select_attribute_store_labels_rollback.php │ │ │ │ │ ├── Elasticsearch6 │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── QuickSearchTest.php │ │ │ │ │ ├── SearchAdapter │ │ │ │ │ │ └── ConnectionManagerTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ └── full_reindex.php │ │ │ │ │ ├── Email │ │ │ │ │ ├── Block │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── Template │ │ │ │ │ │ │ └── Edit │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── Email │ │ │ │ │ │ │ └── TemplateTest.php │ │ │ │ │ └── Model │ │ │ │ │ │ ├── Template │ │ │ │ │ │ └── FilterTest.php │ │ │ │ │ │ ├── TemplateTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ ├── code │ │ │ │ │ │ └── Magento │ │ │ │ │ │ │ └── Email │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ └── email │ │ │ │ │ │ │ ├── footer.html │ │ │ │ │ │ │ └── header.html │ │ │ │ │ │ ├── design │ │ │ │ │ │ ├── adminhtml │ │ │ │ │ │ │ ├── Magento │ │ │ │ │ │ │ │ └── default │ │ │ │ │ │ │ │ │ ├── Magento_Email │ │ │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ │ │ │ └── email_template_test_handle.xml │ │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ │ │ └── sample_email_content.phtml │ │ │ │ │ │ │ │ │ ├── Magento_ProductAlert │ │ │ │ │ │ │ │ │ └── email │ │ │ │ │ │ │ │ │ │ └── cron_error.html │ │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ │ └── Vendor │ │ │ │ │ │ │ │ ├── custom_theme │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ │ │ └── default │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ └── frontend │ │ │ │ │ │ │ ├── Magento │ │ │ │ │ │ │ └── default │ │ │ │ │ │ │ │ ├── Magento_Customer │ │ │ │ │ │ │ │ └── email │ │ │ │ │ │ │ │ │ └── account_new_confirmed.html │ │ │ │ │ │ │ │ ├── Magento_Email │ │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ │ │ └── email_template_test_handle.xml │ │ │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ │ │ ├── sample_email_content.phtml │ │ │ │ │ │ │ │ │ └── sample_email_content_custom.phtml │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ └── css │ │ │ │ │ │ │ │ ├── email-3.less │ │ │ │ │ │ │ │ ├── email-inline-3.less │ │ │ │ │ │ │ │ └── file-with-error.less │ │ │ │ │ │ │ └── Vendor │ │ │ │ │ │ │ ├── custom_theme │ │ │ │ │ │ │ ├── Magento_Customer │ │ │ │ │ │ │ │ └── email │ │ │ │ │ │ │ │ │ └── account_new.html │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ └── css │ │ │ │ │ │ │ │ ├── email-1.less │ │ │ │ │ │ │ │ └── email-inline-1.less │ │ │ │ │ │ │ └── default │ │ │ │ │ │ │ ├── Magento_Customer │ │ │ │ │ │ │ └── email │ │ │ │ │ │ │ │ └── account_new_confirmation.html │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ └── css │ │ │ │ │ │ │ ├── email-2.less │ │ │ │ │ │ │ └── email-inline-2.less │ │ │ │ │ │ ├── email_template.php │ │ │ │ │ │ └── template_fixture.html │ │ │ │ │ ├── EncryptionKey │ │ │ │ │ ├── Block │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── Crypt │ │ │ │ │ │ │ └── Key │ │ │ │ │ │ │ ├── EditTest.php │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── Crypt │ │ │ │ │ │ │ └── Key │ │ │ │ │ │ │ ├── IndexTest.php │ │ │ │ │ │ │ └── SaveTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ │ └── Key │ │ │ │ │ │ │ └── ChangeTest.php │ │ │ │ │ ├── Setup │ │ │ │ │ │ └── Patch │ │ │ │ │ │ │ └── Data │ │ │ │ │ │ │ └── SodiumChachaPatchTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ └── payment_info.php │ │ │ │ │ ├── Fedex │ │ │ │ │ └── Model │ │ │ │ │ │ ├── CarrierTest.php │ │ │ │ │ │ └── Source │ │ │ │ │ │ └── UnitofmeasureTest.php │ │ │ │ │ ├── Framework │ │ │ │ │ ├── Api │ │ │ │ │ │ ├── AbstractExtensibleObjectTest.php │ │ │ │ │ │ ├── ExtensionAttribute │ │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ │ ├── ReaderTest.php │ │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ │ ├── config_one.xml │ │ │ │ │ │ │ │ │ └── config_two.xml │ │ │ │ │ │ │ ├── ExtensionAttributesGenerationTest.php │ │ │ │ │ │ │ └── JoinProcessorTest.php │ │ │ │ │ │ ├── ExtensionAttributesFactoryTest.php │ │ │ │ │ │ ├── SortOrderBuilderTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── extension_attributes.xml │ │ │ │ │ ├── App │ │ │ │ │ │ ├── AreaTest.php │ │ │ │ │ │ ├── Cache │ │ │ │ │ │ │ └── Frontend │ │ │ │ │ │ │ │ ├── FactoryTest.php │ │ │ │ │ │ │ │ └── PoolTest.php │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ ├── BaseTest.php │ │ │ │ │ │ │ ├── DataTest.php │ │ │ │ │ │ │ └── InitialTest.php │ │ │ │ │ │ ├── ControllerActionTest.php │ │ │ │ │ │ ├── Filesystem │ │ │ │ │ │ │ ├── CreatePdfFileTest.php │ │ │ │ │ │ │ └── DirectoryResolverTest.php │ │ │ │ │ │ ├── FrontControllerTest.php │ │ │ │ │ │ ├── Language │ │ │ │ │ │ │ ├── DictionaryTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ ├── bar │ │ │ │ │ │ │ │ ├── en_az │ │ │ │ │ │ │ │ │ ├── a.csv │ │ │ │ │ │ │ │ │ ├── b.csv │ │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ │ └── en_gb │ │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ │ ├── baz │ │ │ │ │ │ │ │ └── en_gb │ │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ │ ├── devdoc │ │ │ │ │ │ │ │ └── en_ak │ │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ │ ├── first │ │ │ │ │ │ │ │ └── en_az │ │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ │ ├── foo │ │ │ │ │ │ │ │ └── en_au │ │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ │ ├── 2.csv │ │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ │ ├── my │ │ │ │ │ │ │ │ └── ru_ru │ │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ │ ├── parent-package-one │ │ │ │ │ │ │ │ ├── en_au_package │ │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ │ ├── en_ie_package │ │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ │ └── language_package_one │ │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ │ ├── parent-package-two │ │ │ │ │ │ │ │ ├── en_ca_package │ │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ │ ├── en_us_package │ │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ │ └── language_package_two │ │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ │ ├── second │ │ │ │ │ │ │ │ └── en_gb │ │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ │ └── theirs │ │ │ │ │ │ │ │ └── ru_ru │ │ │ │ │ │ │ │ ├── 1.csv │ │ │ │ │ │ │ │ ├── language.xml │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ ├── ObjectManager │ │ │ │ │ │ │ ├── ConfigLoaderTest.php │ │ │ │ │ │ │ └── ConfigWriter │ │ │ │ │ │ │ │ └── FilesystemTest.php │ │ │ │ │ │ ├── Request │ │ │ │ │ │ │ ├── CsrfValidatorTest.php │ │ │ │ │ │ │ └── HttpMethodValidatorTest.php │ │ │ │ │ │ ├── ResourceConnection │ │ │ │ │ │ │ └── ConnectionFactoryTest.php │ │ │ │ │ │ ├── Response │ │ │ │ │ │ │ └── HeaderProvider │ │ │ │ │ │ │ │ ├── AbstractHeaderTestCase.php │ │ │ │ │ │ │ │ ├── HstsTest.php │ │ │ │ │ │ │ │ ├── UpgradeInsecureTest.php │ │ │ │ │ │ │ │ └── XFrameOptionsTest.php │ │ │ │ │ │ ├── Route │ │ │ │ │ │ │ └── ConfigTest.php │ │ │ │ │ │ ├── Router │ │ │ │ │ │ │ └── BaseTest.php │ │ │ │ │ │ ├── TestStubs │ │ │ │ │ │ │ ├── InheritanceBasedBackendAction.php │ │ │ │ │ │ │ ├── InheritanceBasedFrontendAction.php │ │ │ │ │ │ │ ├── InterfaceOnlyBackendAction.php │ │ │ │ │ │ │ └── InterfaceOnlyFrontendAction.php │ │ │ │ │ │ ├── Utility │ │ │ │ │ │ │ ├── FilesTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ │ │ ├── language │ │ │ │ │ │ │ │ │ ├── One.php │ │ │ │ │ │ │ │ │ ├── one.csv │ │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ │ ├── library │ │ │ │ │ │ │ │ │ ├── One.php │ │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ │ ├── module │ │ │ │ │ │ │ │ │ ├── One.php │ │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ │ └── theme │ │ │ │ │ │ │ │ │ ├── One.php │ │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ │ └── patterns │ │ │ │ │ │ │ │ ├── paths_one.txt │ │ │ │ │ │ │ │ └── paths_two.txt │ │ │ │ │ │ └── View │ │ │ │ │ │ │ └── Deployment │ │ │ │ │ │ │ └── VersionTest.php │ │ │ │ │ ├── Async │ │ │ │ │ │ ├── ProxyDeferredFactoryTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── test_class.php │ │ │ │ │ ├── Backup │ │ │ │ │ │ ├── DbTest.php │ │ │ │ │ │ ├── FilesystemTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── trigger.php │ │ │ │ │ │ │ ├── trigger_rollback.php │ │ │ │ │ │ │ └── var │ │ │ │ │ │ │ └── backups │ │ │ │ │ │ │ └── 1474538269_filesystem_code.tgz │ │ │ │ │ ├── Cache │ │ │ │ │ │ ├── Backend │ │ │ │ │ │ │ └── MongoDbTest.php │ │ │ │ │ │ └── CoreTest.php │ │ │ │ │ ├── Code │ │ │ │ │ │ ├── File │ │ │ │ │ │ │ └── Validator │ │ │ │ │ │ │ │ └── NotProtectedExtensionTest.php │ │ │ │ │ │ ├── Generator │ │ │ │ │ │ │ └── AutoloaderTest.php │ │ │ │ │ │ ├── GeneratorTest.php │ │ │ │ │ │ ├── GeneratorTest │ │ │ │ │ │ │ ├── NestedNamespace │ │ │ │ │ │ │ │ ├── SourceClassWithNestedNamespace.php │ │ │ │ │ │ │ │ └── SourceClassWithNestedNamespaceExtension.php │ │ │ │ │ │ │ ├── ParentClassWithNamespace.php │ │ │ │ │ │ │ ├── SourceClassWithNamespace.php │ │ │ │ │ │ │ └── SourceClassWithNamespaceExtension.php │ │ │ │ │ │ ├── Reader │ │ │ │ │ │ │ ├── SourceArgumentsReaderTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ └── SourceArgumentsReaderTest.php.sample │ │ │ │ │ │ ├── _expected │ │ │ │ │ │ │ ├── SourceClassWithNamespaceExtensionInterfaceFactory.php.sample │ │ │ │ │ │ │ ├── SourceClassWithNamespaceFactory.php.sample │ │ │ │ │ │ │ ├── SourceClassWithNamespaceInterceptor.php.sample │ │ │ │ │ │ │ ├── SourceClassWithNamespaceProxy.php.sample │ │ │ │ │ │ │ ├── SourceClassWithNestedNamespaceExtensionInterfaceFactory.php.sample │ │ │ │ │ │ │ └── SourceClassWithNestedNamespaceFactory.php.sample │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── ClassToFind.php │ │ │ │ │ ├── Communication │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── communication_incorrect_request_schema_type.php │ │ │ │ │ │ │ ├── communication_invalid_topic_name.php │ │ │ │ │ │ │ ├── communication_is_synchronous_is_not_boolean.php │ │ │ │ │ │ │ ├── communication_missing_handler.xml │ │ │ │ │ │ │ ├── communication_missing_request.xml │ │ │ │ │ │ │ ├── communication_multiple_handlers_synchronous_mode.php │ │ │ │ │ │ │ ├── communication_multiple_handlers_synchronous_mode.xml │ │ │ │ │ │ │ ├── communication_no_attributes.xml │ │ │ │ │ │ │ ├── communication_not_existing_handler_method.php │ │ │ │ │ │ │ ├── communication_not_existing_handler_method.xml │ │ │ │ │ │ │ ├── communication_not_existing_service.xml │ │ │ │ │ │ │ ├── communication_not_existing_service_method.xml │ │ │ │ │ │ │ ├── communication_request_not_existing_service.php │ │ │ │ │ │ │ ├── communication_request_not_existing_service.xml │ │ │ │ │ │ │ ├── communication_response_not_existing_service.php │ │ │ │ │ │ │ ├── communication_response_not_existing_service.xml │ │ │ │ │ │ │ ├── communication_topic_with_excessive_keys.php │ │ │ │ │ │ │ ├── communication_topic_with_missed_keys.php │ │ │ │ │ │ │ ├── communication_topic_without_data.php │ │ │ │ │ │ │ ├── communication_with_disabled_handler.php │ │ │ │ │ │ │ ├── communication_with_non_matched_name.php │ │ │ │ │ │ │ ├── invalid_communication_numeric.xml │ │ │ │ │ │ │ ├── valid_communication.xml │ │ │ │ │ │ │ ├── valid_communication_expected.php │ │ │ │ │ │ │ ├── valid_communication_input.php │ │ │ │ │ │ │ └── valid_communication_numeric.xml │ │ │ │ │ ├── Composer │ │ │ │ │ │ ├── ComposerInformationTest.php │ │ │ │ │ │ ├── RemoveTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── testFromClone │ │ │ │ │ │ │ ├── .htaccess │ │ │ │ │ │ │ ├── cache │ │ │ │ │ │ │ │ └── .htaccess │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ ├── composer.lock │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ │ └── README │ │ │ │ │ │ │ ├── testFromCreateProject │ │ │ │ │ │ │ ├── .htaccess │ │ │ │ │ │ │ ├── cache │ │ │ │ │ │ │ │ └── .htaccess │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ ├── composer.lock │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ │ └── README │ │ │ │ │ │ │ ├── testSkeleton │ │ │ │ │ │ │ ├── .htaccess │ │ │ │ │ │ │ ├── cache │ │ │ │ │ │ │ │ └── .htaccess │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ ├── composer.lock │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ │ └── README │ │ │ │ │ │ │ └── vendor_path.php │ │ │ │ │ ├── Config │ │ │ │ │ │ └── ConverterTest.php │ │ │ │ │ ├── Console │ │ │ │ │ │ ├── CliTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── env.php │ │ │ │ │ ├── Css │ │ │ │ │ │ ├── PreProcessor │ │ │ │ │ │ │ ├── Adapter │ │ │ │ │ │ │ │ └── CssInlinerTest.php │ │ │ │ │ │ │ ├── File │ │ │ │ │ │ │ │ └── Collector │ │ │ │ │ │ │ │ │ └── AggregatedTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ ├── code │ │ │ │ │ │ │ │ └── Magento │ │ │ │ │ │ │ │ │ ├── Other │ │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ │ │ │ └── frontend │ │ │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ │ └── 3.less │ │ │ │ │ │ │ │ │ └── Third │ │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ │ │ └── frontend │ │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ └── 3.less │ │ │ │ │ │ │ │ ├── design │ │ │ │ │ │ │ │ └── frontend │ │ │ │ │ │ │ │ │ └── Test │ │ │ │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ │ │ ├── MagentoFrameworkCssTest_Module │ │ │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ │ │ └── 1.file │ │ │ │ │ │ │ │ │ ├── MagentoFrameworkCssTest_Third │ │ │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ │ │ └── 3.less │ │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ │ └── 1.file │ │ │ │ │ │ │ │ │ └── parent │ │ │ │ │ │ │ │ │ ├── MagentoFrameworkCssTest_Module │ │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ │ └── 1.file │ │ │ │ │ │ │ │ │ ├── MagentoFrameworkCssTest_Second │ │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ │ └── 1.file │ │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ ├── 1.file │ │ │ │ │ │ │ │ ├── 2.file │ │ │ │ │ │ │ │ ├── 3.less │ │ │ │ │ │ │ │ └── some_dir │ │ │ │ │ │ │ │ ├── import_dir │ │ │ │ │ │ │ │ └── import_in_magento_import.less │ │ │ │ │ │ │ │ └── magento_import.less │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── css │ │ │ │ │ │ │ ├── test-css-no-spaces.css │ │ │ │ │ │ │ ├── test-css-with-spaces.css │ │ │ │ │ │ │ └── test-input.html │ │ │ │ │ ├── DB │ │ │ │ │ │ ├── Adapter │ │ │ │ │ │ │ ├── InterfaceTest.php │ │ │ │ │ │ │ └── Pdo │ │ │ │ │ │ │ │ └── MysqlTest.php │ │ │ │ │ │ ├── DataConverter │ │ │ │ │ │ │ └── DataConverterTest.php │ │ │ │ │ │ ├── HelperTest.php │ │ │ │ │ │ ├── TransactionTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── dummy_fixture.php │ │ │ │ │ ├── Data │ │ │ │ │ │ ├── Argument │ │ │ │ │ │ │ └── Interpreter │ │ │ │ │ │ │ │ ├── BaseStringUtilsTest.php │ │ │ │ │ │ │ │ └── StringUtilsTest.php │ │ │ │ │ │ ├── Form │ │ │ │ │ │ │ └── Element │ │ │ │ │ │ │ │ ├── DateTest.php │ │ │ │ │ │ │ │ ├── FieldsetTest.php │ │ │ │ │ │ │ │ └── ImageTest.php │ │ │ │ │ │ └── Wysiwyg │ │ │ │ │ │ │ └── NormalizerTest.php │ │ │ │ │ ├── DataObject │ │ │ │ │ │ ├── Copy │ │ │ │ │ │ │ └── Config │ │ │ │ │ │ │ │ ├── ReaderTest.php │ │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ ├── expectedArray.php │ │ │ │ │ │ │ │ ├── fieldset.xml │ │ │ │ │ │ │ │ ├── partialFieldsetFirst.xml │ │ │ │ │ │ │ │ └── partialFieldsetSecond.xml │ │ │ │ │ │ ├── CopyTest.php │ │ │ │ │ │ └── IdentityValidatorTest.php │ │ │ │ │ ├── Encryption │ │ │ │ │ │ ├── EncryptorTest.php │ │ │ │ │ │ └── ModelTest.php │ │ │ │ │ ├── Error │ │ │ │ │ │ └── ProcessorTest.php │ │ │ │ │ ├── Exception │ │ │ │ │ │ └── NoSuchEntityExceptionTest.php │ │ │ │ │ ├── File │ │ │ │ │ │ ├── SizeTest.php │ │ │ │ │ │ ├── UploaderTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── fixture_with_long_string.txt │ │ │ │ │ ├── Filesystem │ │ │ │ │ │ ├── Directory │ │ │ │ │ │ │ ├── ReadTest.php │ │ │ │ │ │ │ └── WriteTest.php │ │ │ │ │ │ ├── Driver │ │ │ │ │ │ │ └── FileTest.php │ │ │ │ │ │ ├── File │ │ │ │ │ │ │ ├── ReadTest.php │ │ │ │ │ │ │ └── WriteTest.php │ │ │ │ │ │ ├── FileResolverTest.php │ │ │ │ │ │ ├── FilesystemTest.php │ │ │ │ │ │ ├── Io │ │ │ │ │ │ │ └── FileTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── ClassToFind.php │ │ │ │ │ │ │ ├── data.csv │ │ │ │ │ │ │ ├── foo │ │ │ │ │ │ │ ├── bar │ │ │ │ │ │ │ │ ├── baz │ │ │ │ │ │ │ │ │ └── file_one.txt │ │ │ │ │ │ │ │ └── file_two.txt │ │ │ │ │ │ │ └── file_three.txt │ │ │ │ │ │ │ └── popup.csv │ │ │ │ │ ├── Filter │ │ │ │ │ │ ├── DirectiveProcessor │ │ │ │ │ │ │ ├── DependDirectiveTest.php │ │ │ │ │ │ │ ├── Filter │ │ │ │ │ │ │ │ └── FilterApplierTest.php │ │ │ │ │ │ │ ├── ForDirectiveTest.php │ │ │ │ │ │ │ ├── IfDirectiveTest.php │ │ │ │ │ │ │ ├── LegacyDirectiveTest.php │ │ │ │ │ │ │ ├── SimpleDirectiveTest.php │ │ │ │ │ │ │ ├── TemplateDirectiveTest.php │ │ │ │ │ │ │ └── VarDirectiveTest.php │ │ │ │ │ │ ├── Template │ │ │ │ │ │ │ └── Tokenizer │ │ │ │ │ │ │ │ └── ParameterTest.php │ │ │ │ │ │ ├── TemplateTest.php │ │ │ │ │ │ ├── TruncateFilterTest.php │ │ │ │ │ │ └── VariableResolver │ │ │ │ │ │ │ ├── LegacyResolverTest.php │ │ │ │ │ │ │ └── StrictResolverTest.php │ │ │ │ │ ├── GraphQl │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ └── GraphQlReaderTest.php │ │ │ │ │ │ ├── GraphQlConfigTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── query_array_output.php │ │ │ │ │ │ │ ├── schemaA.graphqls │ │ │ │ │ │ │ ├── schemaB.graphqls │ │ │ │ │ │ │ ├── schemaC.graphqls │ │ │ │ │ │ │ ├── schemaD.graphqls │ │ │ │ │ │ │ ├── schema_response_sdl_description.php │ │ │ │ │ │ │ └── schema_with_description_sdl.php │ │ │ │ │ ├── HTTP │ │ │ │ │ │ ├── AsyncClientInterfaceTest.php │ │ │ │ │ │ ├── HeaderTest.php │ │ │ │ │ │ └── PhpEnvironment │ │ │ │ │ │ │ ├── RemoteAddressTest.php │ │ │ │ │ │ │ └── ServerAddressTest.php │ │ │ │ │ ├── Image │ │ │ │ │ │ ├── Adapter │ │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ │ └── InterfaceTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── empty.png │ │ │ │ │ │ │ ├── image_adapters_test.png │ │ │ │ │ │ │ ├── magento_thumbnail.jpg │ │ │ │ │ │ │ ├── notanimage.txt │ │ │ │ │ │ │ ├── watermark.gif │ │ │ │ │ │ │ ├── watermark.jpg │ │ │ │ │ │ │ ├── watermark.png │ │ │ │ │ │ │ ├── watermark_alpha.png │ │ │ │ │ │ │ └── watermark_alpha_base_image.jpg │ │ │ │ │ ├── Interception │ │ │ │ │ │ ├── AbstractPlugin.php │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ └── CacheManagerTest.php │ │ │ │ │ │ ├── Fixture │ │ │ │ │ │ │ ├── Intercepted.php │ │ │ │ │ │ │ ├── Intercepted │ │ │ │ │ │ │ │ ├── FirstPlugin.php │ │ │ │ │ │ │ │ ├── InterfacePlugin.php │ │ │ │ │ │ │ │ └── Plugin.php │ │ │ │ │ │ │ ├── InterceptedInterface.php │ │ │ │ │ │ │ ├── InterceptedParent.php │ │ │ │ │ │ │ └── InterceptedParentInterface.php │ │ │ │ │ │ ├── GeneralTest.php │ │ │ │ │ │ ├── PluginListGeneratorTest.php │ │ │ │ │ │ └── TwoPluginTest.php │ │ │ │ │ ├── Json │ │ │ │ │ │ └── Helper │ │ │ │ │ │ │ └── DataTest.php │ │ │ │ │ ├── Lock │ │ │ │ │ │ └── Backend │ │ │ │ │ │ │ ├── CacheTest.php │ │ │ │ │ │ │ ├── DatabaseTest.php │ │ │ │ │ │ │ ├── FileLockTest.php │ │ │ │ │ │ │ └── ZookeeperTest.php │ │ │ │ │ ├── Mail │ │ │ │ │ │ ├── EmailMessageTest.php │ │ │ │ │ │ └── TransportBuilderTest.php │ │ │ │ │ ├── Message │ │ │ │ │ │ ├── CollectionFactoryTest.php │ │ │ │ │ │ ├── FactoryTest.php │ │ │ │ │ │ └── ManagerTest.php │ │ │ │ │ ├── MessageQueue │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ ├── Consumer │ │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ │ └── DeprecatedConfigTest.php │ │ │ │ │ │ ├── MessageEncoderTest.php │ │ │ │ │ │ ├── Publisher │ │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ │ └── DeprecatedConfigTest.php │ │ │ │ │ │ ├── Topology │ │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ │ └── DeprecatedConfigTest.php │ │ │ │ │ │ ├── TopologyTest.php │ │ │ │ │ │ ├── UseCase │ │ │ │ │ │ │ ├── AsyncMultipleHandlersTest.php │ │ │ │ │ │ │ ├── AsyncMultipleTopicsWithEachQueueTest.php │ │ │ │ │ │ │ ├── DeprecatedFormat │ │ │ │ │ │ │ │ ├── AsyncMultiTopicsSeparateQueuesTest.php │ │ │ │ │ │ │ │ └── RpcCommunicationTest.php │ │ │ │ │ │ │ ├── MixSyncAndAsyncSingleQueueTest.php │ │ │ │ │ │ │ ├── MultipleTopicsPerQueueTest.php │ │ │ │ │ │ │ ├── QueueTestCaseAbstract.php │ │ │ │ │ │ │ ├── RemoteServiceCommunicationTest.php │ │ │ │ │ │ │ ├── RpcCommunicationTest.php │ │ │ │ │ │ │ ├── WaitAndNotWaitMessagesTest.php │ │ │ │ │ │ │ └── WildcardTopicTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── communication.xml │ │ │ │ │ │ │ ├── encoder_communication.php │ │ │ │ │ │ │ ├── valid_expected_queue.php │ │ │ │ │ │ │ ├── valid_new_queue.xml │ │ │ │ │ │ │ └── valid_queue_input.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Entity │ │ │ │ │ │ │ └── HydratorTest.php │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ │ ├── Db │ │ │ │ │ │ │ │ ├── AbstractTest.php │ │ │ │ │ │ │ │ ├── Collection │ │ │ │ │ │ │ │ │ └── AbstractTest.php │ │ │ │ │ │ │ │ └── ProfilerTest.php │ │ │ │ │ │ │ ├── Entity │ │ │ │ │ │ │ │ └── TableTest.php │ │ │ │ │ │ │ ├── IteratorTest.php │ │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ │ └── Db │ │ │ │ │ │ │ │ ├── ConnectionFactoryTest.php │ │ │ │ │ │ │ │ └── Pdo │ │ │ │ │ │ │ │ └── MysqlTest.php │ │ │ │ │ │ └── ResourceTest.php │ │ │ │ │ ├── Module │ │ │ │ │ │ └── Plugin │ │ │ │ │ │ │ └── DbStatusValidatorTest.php │ │ │ │ │ ├── Mview │ │ │ │ │ │ └── View │ │ │ │ │ │ │ └── ChangelogTest.php │ │ │ │ │ ├── ObjectManager │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ └── Reader │ │ │ │ │ │ │ │ └── DomTest.php │ │ │ │ │ │ ├── Factory │ │ │ │ │ │ │ ├── AbstractFactoryRuntimeDefinitionsTestCases.php │ │ │ │ │ │ │ ├── CompiledTest.php │ │ │ │ │ │ │ └── Dynamic │ │ │ │ │ │ │ │ └── DeveloperTest.php │ │ │ │ │ │ ├── ObjectManagerTest.php │ │ │ │ │ │ ├── TestAsset │ │ │ │ │ │ │ ├── Basic.php │ │ │ │ │ │ │ ├── BasicInjection.php │ │ │ │ │ │ │ ├── ComplexDependencies.php │ │ │ │ │ │ │ ├── ConstructorEightArguments.php │ │ │ │ │ │ │ ├── ConstructorFiveArguments.php │ │ │ │ │ │ │ ├── ConstructorFourArguments.php │ │ │ │ │ │ │ ├── ConstructorNineArguments.php │ │ │ │ │ │ │ ├── ConstructorNoArguments.php │ │ │ │ │ │ │ ├── ConstructorOneArgument.php │ │ │ │ │ │ │ ├── ConstructorSevenArguments.php │ │ │ │ │ │ │ ├── ConstructorSixArguments.php │ │ │ │ │ │ │ ├── ConstructorTenArguments.php │ │ │ │ │ │ │ ├── ConstructorThreeArguments.php │ │ │ │ │ │ │ ├── ConstructorTwoArguments.php │ │ │ │ │ │ │ ├── ConstructorWithTypeError.php │ │ │ │ │ │ │ ├── DependsOnAlias.php │ │ │ │ │ │ │ ├── DependsOnInterface.php │ │ │ │ │ │ │ ├── HasOptionalParameters.php │ │ │ │ │ │ │ ├── InterfaceImplementation.php │ │ │ │ │ │ │ ├── InterfaceInjection.php │ │ │ │ │ │ │ └── TestAssetInterface.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── config_merged.xml │ │ │ │ │ │ │ ├── config_one.xml │ │ │ │ │ │ │ └── config_two.xml │ │ │ │ │ ├── Pricing │ │ │ │ │ │ └── Helper │ │ │ │ │ │ │ └── DataTest.php │ │ │ │ │ ├── Profiler │ │ │ │ │ │ └── Driver │ │ │ │ │ │ │ └── Standard │ │ │ │ │ │ │ └── Output │ │ │ │ │ │ │ ├── CsvfileTest.php │ │ │ │ │ │ │ ├── HtmlTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── output.html │ │ │ │ │ │ │ ├── output_custom.csv │ │ │ │ │ │ │ ├── output_default.csv │ │ │ │ │ │ │ └── timers.php │ │ │ │ │ ├── ProfilerTest.php │ │ │ │ │ ├── Reflection │ │ │ │ │ │ └── MethodsMapTest.php │ │ │ │ │ ├── Search │ │ │ │ │ │ ├── Request │ │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ │ ├── ConverterTest.php │ │ │ │ │ │ │ │ ├── FileResolverStub.php │ │ │ │ │ │ │ │ └── FileSystemReaderTest.php │ │ │ │ │ │ │ └── MapperTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── configurable_attribute.php │ │ │ │ │ │ │ ├── configurable_attribute_rollback.php │ │ │ │ │ │ │ ├── date_attribute.php │ │ │ │ │ │ │ ├── date_attribute_rollback.php │ │ │ │ │ │ │ ├── etc │ │ │ │ │ │ │ ├── search_request_1.xml │ │ │ │ │ │ │ └── search_request_2.xml │ │ │ │ │ │ │ ├── filterable_attribute.php │ │ │ │ │ │ │ ├── filterable_attribute_rollback.php │ │ │ │ │ │ │ ├── filterable_attributes.php │ │ │ │ │ │ │ ├── filterable_attributes_rollback.php │ │ │ │ │ │ │ ├── product_configurable.php │ │ │ │ │ │ │ ├── product_configurable_rollback.php │ │ │ │ │ │ │ ├── product_configurable_with_disabled_child.php │ │ │ │ │ │ │ ├── product_configurable_with_disabled_child_rollback.php │ │ │ │ │ │ │ ├── product_configurable_with_out-of-stock_child.php │ │ │ │ │ │ │ ├── product_configurable_with_out-of-stock_child_rollback.php │ │ │ │ │ │ │ ├── products.php │ │ │ │ │ │ │ ├── products_multi_option.php │ │ │ │ │ │ │ ├── products_multi_option_rollback.php │ │ │ │ │ │ │ ├── products_rollback.php │ │ │ │ │ │ │ ├── products_with_the_same_search_score.php │ │ │ │ │ │ │ ├── products_with_the_same_search_score_rollback.php │ │ │ │ │ │ │ ├── requests.xml │ │ │ │ │ │ │ ├── search_request.xml │ │ │ │ │ │ │ ├── search_request_config.php │ │ │ │ │ │ │ ├── search_request_merged.php │ │ │ │ │ │ │ ├── search_weight_products.php │ │ │ │ │ │ │ └── search_weight_products_rollback.php │ │ │ │ │ ├── Session │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ └── Validator │ │ │ │ │ │ │ │ ├── CookieDomainValidatorTest.php │ │ │ │ │ │ │ │ ├── CookieLifetimeValidatorTest.php │ │ │ │ │ │ │ │ └── CookiePathValidatorTest.php │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ ├── SaveHandler │ │ │ │ │ │ │ └── DbTableTest.php │ │ │ │ │ │ ├── SaveHandlerTest.php │ │ │ │ │ │ └── SessionManagerTest.php │ │ │ │ │ ├── Stdlib │ │ │ │ │ │ ├── Cookie │ │ │ │ │ │ │ ├── CookieScopeTest.php │ │ │ │ │ │ │ ├── PhpCookieManagerTest.php │ │ │ │ │ │ │ └── PhpCookieReaderTest.php │ │ │ │ │ │ └── DateTime │ │ │ │ │ │ │ └── Filter │ │ │ │ │ │ │ ├── DateTest.php │ │ │ │ │ │ │ └── DateTimeTest.php │ │ │ │ │ ├── Translate │ │ │ │ │ │ ├── InlineTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── _inline_page_expected.html │ │ │ │ │ │ │ ├── _inline_page_original.html │ │ │ │ │ │ │ └── _translation_data.php │ │ │ │ │ ├── TranslateCachingTest.php │ │ │ │ │ ├── TranslateTest.php │ │ │ │ │ ├── Url │ │ │ │ │ │ └── Helper │ │ │ │ │ │ │ └── DataTest.php │ │ │ │ │ ├── UrlTest.php │ │ │ │ │ ├── Validator │ │ │ │ │ │ └── FactoryTest.php │ │ │ │ │ ├── ValidatorFactoryTest.php │ │ │ │ │ └── View │ │ │ │ │ │ ├── Asset │ │ │ │ │ │ └── MinifierTest.php │ │ │ │ │ │ ├── Design │ │ │ │ │ │ ├── Fallback │ │ │ │ │ │ │ └── RulePoolTest.php │ │ │ │ │ │ ├── FileResolution │ │ │ │ │ │ │ └── FallbackTest.php │ │ │ │ │ │ └── Theme │ │ │ │ │ │ │ ├── LabelTest.php │ │ │ │ │ │ │ └── ValidatorTest.php │ │ │ │ │ │ ├── Element │ │ │ │ │ │ ├── AbstractBlockTest.php │ │ │ │ │ │ ├── TemplateTest.php │ │ │ │ │ │ ├── Text │ │ │ │ │ │ │ └── ListTest.php │ │ │ │ │ │ ├── TextTest.php │ │ │ │ │ │ ├── UiComponent │ │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ │ └── Provider │ │ │ │ │ │ │ │ │ └── TemplateTest.php │ │ │ │ │ │ │ ├── ContextTest.php │ │ │ │ │ │ │ └── DataProvider │ │ │ │ │ │ │ │ └── ReportingTest.php │ │ │ │ │ │ ├── UiComponentFactoryTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── frontend │ │ │ │ │ │ │ └── Magento │ │ │ │ │ │ │ └── plushe │ │ │ │ │ │ │ └── css │ │ │ │ │ │ │ └── wrong.css │ │ │ │ │ │ ├── FileSystemTest.php │ │ │ │ │ │ ├── Fixture │ │ │ │ │ │ └── Block │ │ │ │ │ │ │ ├── BrokenAction.php │ │ │ │ │ │ │ ├── BrokenConstructor.php │ │ │ │ │ │ │ └── BrokenLayout.php │ │ │ │ │ │ ├── Helper │ │ │ │ │ │ ├── SecureHtmlRendererTemplateTest.php │ │ │ │ │ │ └── SecureHtmlRendererTest.php │ │ │ │ │ │ ├── Layout │ │ │ │ │ │ ├── ElementTest.php │ │ │ │ │ │ ├── MergeTest.php │ │ │ │ │ │ ├── Reader │ │ │ │ │ │ │ ├── BlockTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ ├── _layout_update_block.xml │ │ │ │ │ │ │ │ └── _layout_update_reference.xml │ │ │ │ │ │ ├── _files │ │ │ │ │ │ │ └── _layout_update.xml │ │ │ │ │ │ └── _mergeFiles │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── catalog_category_default.xml │ │ │ │ │ │ │ ├── catalog_category_layered.xml │ │ │ │ │ │ │ ├── catalog_product_view.xml │ │ │ │ │ │ │ ├── catalog_product_view_type_configurable.xml │ │ │ │ │ │ │ ├── catalog_product_view_type_simple.xml │ │ │ │ │ │ │ ├── checkout_index_index.xml │ │ │ │ │ │ │ ├── customer_account.xml │ │ │ │ │ │ │ ├── default.xml │ │ │ │ │ │ │ ├── file_wrong.xml │ │ │ │ │ │ │ ├── fixture_handle_one.xml │ │ │ │ │ │ │ ├── fixture_handle_page_layout.xml │ │ │ │ │ │ │ ├── fixture_handle_two.xml │ │ │ │ │ │ │ ├── fixture_handle_with_page_layout.xml │ │ │ │ │ │ │ ├── not_a_page_type.xml │ │ │ │ │ │ │ ├── page_empty.xml │ │ │ │ │ │ │ ├── print.xml │ │ │ │ │ │ │ ├── sales_guest_print.xml │ │ │ │ │ │ │ └── sales_order_print.xml │ │ │ │ │ │ │ └── merged.xml │ │ │ │ │ │ ├── LayoutArgumentObjectUpdater.php │ │ │ │ │ │ ├── LayoutArgumentSimpleUpdater.php │ │ │ │ │ │ ├── LayoutDirectivesTest.php │ │ │ │ │ │ ├── LayoutTest.php │ │ │ │ │ │ ├── LayoutTestWithExceptions.php │ │ │ │ │ │ ├── Model │ │ │ │ │ │ └── Layout │ │ │ │ │ │ │ ├── MergeTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── layout │ │ │ │ │ │ │ ├── fixture_handle_one.xml │ │ │ │ │ │ │ └── fixture_handle_two.xml │ │ │ │ │ │ ├── Page │ │ │ │ │ │ └── Config │ │ │ │ │ │ │ └── Reader │ │ │ │ │ │ │ ├── HtmlTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── _layout_update.xml │ │ │ │ │ │ ├── TemplateEngine │ │ │ │ │ │ └── PhpTest.php │ │ │ │ │ │ ├── Utility │ │ │ │ │ │ ├── Layout.php │ │ │ │ │ │ ├── LayoutTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── handle_one.xml │ │ │ │ │ │ │ ├── handle_three.xml │ │ │ │ │ │ │ └── handle_two.xml │ │ │ │ │ │ │ └── layout_merged │ │ │ │ │ │ │ ├── multiple_handles.xml │ │ │ │ │ │ │ └── single_handle.xml │ │ │ │ │ │ └── _files │ │ │ │ │ │ ├── Fixture_Module │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ ├── Magento │ │ │ │ │ │ ├── ModuleA │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ │ │ └── product │ │ │ │ │ │ │ │ └── product.css │ │ │ │ │ │ ├── ModuleB │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ └── gallery-image-base-label.png │ │ │ │ │ │ └── ModuleC │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── allinone.png │ │ │ │ │ │ │ └── logo.png │ │ │ │ │ │ │ └── styles.css │ │ │ │ │ │ ├── UiComponent │ │ │ │ │ │ ├── expected │ │ │ │ │ │ │ └── config.xml │ │ │ │ │ │ └── theme │ │ │ │ │ │ │ ├── Magento_Catalog │ │ │ │ │ │ │ └── ui_component │ │ │ │ │ │ │ │ └── test.xml │ │ │ │ │ │ │ ├── Magento_Customer │ │ │ │ │ │ │ └── ui_component │ │ │ │ │ │ │ │ └── test.xml │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ ├── fallback │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ └── code │ │ │ │ │ │ │ │ └── ViewTest_Module │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ ├── design │ │ │ │ │ │ │ └── frontend │ │ │ │ │ │ │ │ └── Vendor │ │ │ │ │ │ │ │ ├── custom_theme │ │ │ │ │ │ │ │ ├── ViewTest_Module │ │ │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ │ │ └── fixture_template_two.phtml │ │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ │ └── fixture_script_two.js │ │ │ │ │ │ │ │ ├── i18n │ │ │ │ │ │ │ │ │ └── en_US.csv │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ │ └── fixture_template_two.phtml │ │ │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ ├── fixture_script_two.js │ │ │ │ │ │ │ │ │ └── mage │ │ │ │ │ │ │ │ │ └── script.js │ │ │ │ │ │ │ │ ├── custom_theme2 │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ │ ├── ViewTest_Module │ │ │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ │ │ └── fixture_template.phtml │ │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ │ ├── fixture_script.js │ │ │ │ │ │ │ │ │ │ └── i18n │ │ │ │ │ │ │ │ │ │ └── ru_RU │ │ │ │ │ │ │ │ │ │ └── fixture_script.js │ │ │ │ │ │ │ │ ├── i18n │ │ │ │ │ │ │ │ │ └── en_US.csv │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ │ └── fixture_template.phtml │ │ │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ ├── fixture_script.js │ │ │ │ │ │ │ │ │ └── i18n │ │ │ │ │ │ │ │ │ └── ru_RU │ │ │ │ │ │ │ │ │ └── fixture_script.js │ │ │ │ │ │ │ │ └── standalone_theme │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ └── mage │ │ │ │ │ │ │ └── script.js │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── cacheable.xml │ │ │ │ │ │ ├── container_attributes.xml │ │ │ │ │ │ ├── non_cacheable.xml │ │ │ │ │ │ ├── non_cacheable_block_with_declared_reference.xml │ │ │ │ │ │ └── non_cacheable_block_with_missing_refference.xml │ │ │ │ │ │ ├── layout_directives_test │ │ │ │ │ │ ├── action_for_anonymous_parent_block.xml │ │ │ │ │ │ ├── arguments.xml │ │ │ │ │ │ ├── arguments_complex_values.xml │ │ │ │ │ │ ├── arguments_object_type.xml │ │ │ │ │ │ ├── arguments_object_type_updaters.xml │ │ │ │ │ │ ├── arguments_url_type.xml │ │ │ │ │ │ ├── get_block.xml │ │ │ │ │ │ ├── group.xml │ │ │ │ │ │ ├── ifconfig.xml │ │ │ │ │ │ ├── move.xml │ │ │ │ │ │ ├── move_alias_broken.xml │ │ │ │ │ │ ├── move_broken.xml │ │ │ │ │ │ ├── move_new_alias.xml │ │ │ │ │ │ ├── move_the_same_alias.xml │ │ │ │ │ │ ├── remove.xml │ │ │ │ │ │ ├── remove_broken.xml │ │ │ │ │ │ ├── remove_cancellation.xml │ │ │ │ │ │ ├── render.xml │ │ │ │ │ │ ├── sort_after_after.xml │ │ │ │ │ │ ├── sort_after_previous.xml │ │ │ │ │ │ ├── sort_before_after.xml │ │ │ │ │ │ └── sort_before_before.xml │ │ │ │ │ │ ├── layout_with_exceptions │ │ │ │ │ │ └── layout.xml │ │ │ │ │ │ ├── static │ │ │ │ │ │ ├── expected │ │ │ │ │ │ │ ├── styles.magento.min.css │ │ │ │ │ │ │ └── test.min.js │ │ │ │ │ │ └── theme │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── preminified-styles.min.css │ │ │ │ │ │ │ └── styles.css │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ └── test_template.phtml │ │ │ │ │ ├── GiftMessage │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── OrderItemRepositoryTest.php │ │ │ │ │ │ └── OrderRepositoryTest.php │ │ │ │ │ ├── Observer │ │ │ │ │ │ └── SalesEventQuoteMergeTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── customer │ │ │ │ │ │ ├── order_with_message.php │ │ │ │ │ │ └── order_with_message_rollback.php │ │ │ │ │ │ ├── empty_order.php │ │ │ │ │ │ ├── guest │ │ │ │ │ │ ├── quote_with_item_message.php │ │ │ │ │ │ └── quote_with_item_message_rollback.php │ │ │ │ │ │ ├── order_with_message.php │ │ │ │ │ │ ├── quote_with_customer_and_message.php │ │ │ │ │ │ ├── quote_with_customer_and_message_rollback.php │ │ │ │ │ │ ├── quote_with_item_message.php │ │ │ │ │ │ ├── quote_with_item_message_rollback.php │ │ │ │ │ │ ├── quote_with_message.php │ │ │ │ │ │ ├── quote_with_message_rollback.php │ │ │ │ │ │ └── virtual_order.php │ │ │ │ │ ├── GoogleAdwords │ │ │ │ │ └── Model │ │ │ │ │ │ └── Validator │ │ │ │ │ │ └── FactoryTest.php │ │ │ │ │ ├── GoogleAnalytics │ │ │ │ │ └── Block │ │ │ │ │ │ └── GaTest.php │ │ │ │ │ ├── GraphQl │ │ │ │ │ ├── Catalog │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── apply_tax_for_simple_product.php │ │ │ │ │ │ │ ├── set_custom_options_simple_product.php │ │ │ │ │ │ │ ├── set_simple_product_out_of_stock.php │ │ │ │ │ │ │ ├── set_weight_to_simple_product.php │ │ │ │ │ │ │ ├── simple_product.php │ │ │ │ │ │ │ ├── simple_product_rollback.php │ │ │ │ │ │ │ ├── simple_product_without_visibility.php │ │ │ │ │ │ │ ├── simple_product_without_visibility_rollback.php │ │ │ │ │ │ │ ├── virtual_product.php │ │ │ │ │ │ │ └── virtual_product_rollback.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── GraphQlControllerTest.php │ │ │ │ │ ├── FedEx │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── enable_fedex_shipping_method.php │ │ │ │ │ │ │ └── enable_fedex_shipping_method_rollback.php │ │ │ │ │ ├── GraphQlIntrospectionTest.php │ │ │ │ │ ├── Quote │ │ │ │ │ │ ├── GetMaskedQuoteIdByReservedOrderId.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── add_configurable_product.php │ │ │ │ │ │ │ ├── add_simple_product.php │ │ │ │ │ │ │ ├── add_simple_product_with_options.php │ │ │ │ │ │ │ ├── add_virtual_product.php │ │ │ │ │ │ │ ├── apply_coupon.php │ │ │ │ │ │ │ ├── apply_coupon_rollback.php │ │ │ │ │ │ │ ├── cart_rule_discount_no_coupon.php │ │ │ │ │ │ │ ├── cart_rule_discount_no_coupon_rollback.php │ │ │ │ │ │ │ ├── customer │ │ │ │ │ │ │ ├── create_empty_cart.php │ │ │ │ │ │ │ ├── create_empty_cart_rollback.php │ │ │ │ │ │ │ ├── create_empty_cart_without_masked_quote_id.php │ │ │ │ │ │ │ └── create_empty_cart_without_masked_quote_id_rollback.php │ │ │ │ │ │ │ ├── disable_all_active_payment_methods.php │ │ │ │ │ │ │ ├── disable_all_active_payment_methods_rollback.php │ │ │ │ │ │ │ ├── disable_guest_checkout.php │ │ │ │ │ │ │ ├── disable_guest_checkout_rollback.php │ │ │ │ │ │ │ ├── disable_offline_shipping_methods.php │ │ │ │ │ │ │ ├── disable_offline_shipping_methods_rollback.php │ │ │ │ │ │ │ ├── enable_offline_payment_methods.php │ │ │ │ │ │ │ ├── enable_offline_payment_methods_rollback.php │ │ │ │ │ │ │ ├── enable_offline_shipping_methods.php │ │ │ │ │ │ │ ├── enable_offline_shipping_methods_rollback.php │ │ │ │ │ │ │ ├── guest │ │ │ │ │ │ │ ├── create_empty_cart.php │ │ │ │ │ │ │ ├── create_empty_cart_rollback.php │ │ │ │ │ │ │ ├── quote_with_address.php │ │ │ │ │ │ │ ├── quote_with_address_rollback.php │ │ │ │ │ │ │ └── set_guest_email.php │ │ │ │ │ │ │ ├── make_cart_inactive.php │ │ │ │ │ │ │ ├── restrict_coupon_usage_for_simple_product.php │ │ │ │ │ │ │ ├── restrict_coupon_usage_for_simple_product_rollback.php │ │ │ │ │ │ │ ├── set_checkmo_payment_method.php │ │ │ │ │ │ │ ├── set_flatrate_shipping_method.php │ │ │ │ │ │ │ ├── set_multishipping_with_two_shipping_addresses.php │ │ │ │ │ │ │ ├── set_new_billing_address.php │ │ │ │ │ │ │ ├── set_new_shipping_address.php │ │ │ │ │ │ │ └── set_new_shipping_canada_address.php │ │ │ │ │ ├── Sales │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── address_data.php │ │ │ │ │ │ │ ├── customer_order_with_multiple_shipments.php │ │ │ │ │ │ │ ├── customer_order_with_multiple_shipments_rollback.php │ │ │ │ │ │ │ ├── customer_order_with_simple_shipment.php │ │ │ │ │ │ │ ├── customer_order_with_simple_shipment_rollback.php │ │ │ │ │ │ │ ├── customer_order_with_ups_shipping.php │ │ │ │ │ │ │ ├── customer_order_with_ups_shipping_rollback.php │ │ │ │ │ │ │ ├── order_with_totals.php │ │ │ │ │ │ │ ├── order_with_totals_rollback.php │ │ │ │ │ │ │ ├── orders_with_customer.php │ │ │ │ │ │ │ ├── orders_with_customer_rollback.php │ │ │ │ │ │ │ ├── two_orders_with_order_items_two_storeviews.php │ │ │ │ │ │ │ └── two_orders_with_order_items_two_storeviews_rollback.php │ │ │ │ │ ├── Service │ │ │ │ │ │ └── GraphQlRequest.php │ │ │ │ │ ├── Tax │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── tax_calculation_price_and_cart_display_settings.php │ │ │ │ │ │ │ ├── tax_calculation_price_and_cart_display_settings_rollback.php │ │ │ │ │ │ │ ├── tax_calculation_shipping_and_order_display_settings.php │ │ │ │ │ │ │ ├── tax_calculation_shipping_and_order_display_settings_rollback.php │ │ │ │ │ │ │ ├── tax_calculation_shipping_excludeTax_order_display_settings.php │ │ │ │ │ │ │ ├── tax_calculation_shipping_excludeTax_order_display_settings_rollback.php │ │ │ │ │ │ │ ├── tax_rule_for_region_1.php │ │ │ │ │ │ │ ├── tax_rule_for_region_1_rollback.php │ │ │ │ │ │ │ ├── tax_rule_for_region_al.php │ │ │ │ │ │ │ └── tax_rule_for_region_al_rollback.php │ │ │ │ │ └── Usps │ │ │ │ │ │ └── _files │ │ │ │ │ │ ├── enable_usps_shipping_method.php │ │ │ │ │ │ └── enable_usps_shipping_method_rollback.php │ │ │ │ │ ├── GraphQlCache │ │ │ │ │ └── Controller │ │ │ │ │ │ ├── AbstractGraphqlCacheTest.php │ │ │ │ │ │ ├── Catalog │ │ │ │ │ │ ├── CategoriesWithProductsCacheTest.php │ │ │ │ │ │ ├── CategoryCacheTest.php │ │ │ │ │ │ ├── CategoryListCacheTest.php │ │ │ │ │ │ ├── CategoryListMultipleIdsCacheTest.php │ │ │ │ │ │ ├── CategoryListSingleIdCacheTest.php │ │ │ │ │ │ ├── DeepNestedCategoriesAndProductsTest.php │ │ │ │ │ │ └── ProductsCacheTest.php │ │ │ │ │ │ ├── Cms │ │ │ │ │ │ ├── BlockCacheTest.php │ │ │ │ │ │ └── CmsPageCacheTest.php │ │ │ │ │ │ └── UrlRewrite │ │ │ │ │ │ └── AllEntitiesUrlResolverCacheTest.php │ │ │ │ │ ├── GroupedImportExport │ │ │ │ │ └── Model │ │ │ │ │ │ ├── GroupedTest.php │ │ │ │ │ │ └── Import │ │ │ │ │ │ ├── Product │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ └── GroupedTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ └── grouped_product.csv │ │ │ │ │ ├── GroupedProduct │ │ │ │ │ ├── Block │ │ │ │ │ │ └── Order │ │ │ │ │ │ │ └── Email │ │ │ │ │ │ │ └── Items │ │ │ │ │ │ │ └── CreditMemo │ │ │ │ │ │ │ └── GroupedTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Inventory │ │ │ │ │ │ │ └── ParentItemProcessorTest.php │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ │ └── GroupedTest.php │ │ │ │ │ │ ├── ProductLink │ │ │ │ │ │ │ └── GroupedProductLinkQueryTest.php │ │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ ├── Indexer │ │ │ │ │ │ │ ├── Price │ │ │ │ │ │ │ │ └── GroupedTest.php │ │ │ │ │ │ │ └── Stock │ │ │ │ │ │ │ │ └── GroupedTest.php │ │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ └── Grouped │ │ │ │ │ │ │ └── AssociatedProductsCollectionTest.php │ │ │ │ │ ├── Pricing │ │ │ │ │ │ └── Price │ │ │ │ │ │ │ └── FinalPriceTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── product_grouped.php │ │ │ │ │ │ ├── product_grouped_in_multiple_websites.php │ │ │ │ │ │ ├── product_grouped_in_multiple_websites_rollback.php │ │ │ │ │ │ ├── product_grouped_items_in_multiple_websites.php │ │ │ │ │ │ ├── product_grouped_items_in_multiple_websites_rollback.php │ │ │ │ │ │ ├── product_grouped_rollback.php │ │ │ │ │ │ ├── product_grouped_with_out_of_stock.php │ │ │ │ │ │ ├── product_grouped_with_out_of_stock_rollback.php │ │ │ │ │ │ ├── product_grouped_with_simple.php │ │ │ │ │ │ ├── product_grouped_with_simple_out_of_stock.php │ │ │ │ │ │ ├── product_grouped_with_simple_out_of_stock_rollback.php │ │ │ │ │ │ └── product_grouped_with_simple_rollback.php │ │ │ │ │ ├── ImportExport │ │ │ │ │ ├── Block │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ ├── Export │ │ │ │ │ │ │ ├── Edit │ │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ │ │ └── FilterTest.php │ │ │ │ │ │ │ └── Import │ │ │ │ │ │ │ └── Edit │ │ │ │ │ │ │ ├── BeforeTest.php │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ ├── Export │ │ │ │ │ │ │ ├── ExportTest.php │ │ │ │ │ │ │ └── File │ │ │ │ │ │ │ │ ├── DeleteTest.php │ │ │ │ │ │ │ │ └── DownloadTest.php │ │ │ │ │ │ │ ├── ExportTest.php │ │ │ │ │ │ │ ├── Import │ │ │ │ │ │ │ ├── HttpFactoryMock.php │ │ │ │ │ │ │ ├── ValidateTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ ├── catalog_product.csv │ │ │ │ │ │ │ │ ├── catalog_product.zip │ │ │ │ │ │ │ │ ├── incorrect_catalog_product_comma.csv │ │ │ │ │ │ │ │ ├── incorrect_catalog_product_semicolon.csv │ │ │ │ │ │ │ │ ├── invalid_catalog_products.csv │ │ │ │ │ │ │ │ └── test.txt │ │ │ │ │ │ │ ├── ImportResultTest.php │ │ │ │ │ │ │ ├── ImportTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── products_duplicate_category.csv │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Export │ │ │ │ │ │ │ ├── AbstractStubEntity.php │ │ │ │ │ │ │ ├── Adapter │ │ │ │ │ │ │ │ └── CsvTest.php │ │ │ │ │ │ │ ├── ConsumerTest.php │ │ │ │ │ │ │ ├── Entity │ │ │ │ │ │ │ │ └── AbstractEavTest.php │ │ │ │ │ │ │ └── EntityAbstractTest.php │ │ │ │ │ │ ├── ExportTest.php │ │ │ │ │ │ ├── Import │ │ │ │ │ │ │ ├── Entity │ │ │ │ │ │ │ │ ├── EavAbstractTest.php │ │ │ │ │ │ │ │ ├── EntityAbstractTest.php │ │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ │ ├── advanced_price_for_validation_test.csv │ │ │ │ │ │ │ │ │ └── customers_for_validation_test.csv │ │ │ │ │ │ │ └── EntityAbstractTest.php │ │ │ │ │ │ ├── ImportTest.php │ │ │ │ │ │ ├── Report │ │ │ │ │ │ │ └── CsvTest.php │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ │ └── Import │ │ │ │ │ │ │ │ └── DataTest.php │ │ │ │ │ │ └── Source │ │ │ │ │ │ │ └── Import │ │ │ │ │ │ │ └── EntityTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── export_queue_data.php │ │ │ │ │ │ ├── export_queue_data_rollback.php │ │ │ │ │ │ ├── import_data.php │ │ │ │ │ │ └── product.php │ │ │ │ │ ├── Indexer │ │ │ │ │ ├── Console │ │ │ │ │ │ └── Command │ │ │ │ │ │ │ └── IndexerReindexCommandTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── IndexerTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ └── Config │ │ │ │ │ │ │ ├── ConverterTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── dependency_on_not_existing_indexer.xml │ │ │ │ │ │ │ ├── indexer.xml │ │ │ │ │ │ │ ├── indexer_with_circular_dependency.xml │ │ │ │ │ │ │ └── result.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── reindex_all_invalid.php │ │ │ │ │ │ ├── wrong_config_data.php │ │ │ │ │ │ └── wrong_config_data_rollback.php │ │ │ │ │ ├── InstantPurchase │ │ │ │ │ ├── CustomerData │ │ │ │ │ │ ├── InstantPurchaseTest.php │ │ │ │ │ │ └── StubPaymentTokenFormatter.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── InstantPurchaseTest.php │ │ │ │ │ │ └── PlaceOrderTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ └── fake_payment_token.php │ │ │ │ │ ├── Integration │ │ │ │ │ ├── Block │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ ├── Integration │ │ │ │ │ │ │ ├── Activate │ │ │ │ │ │ │ │ └── Permissions │ │ │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ │ │ └── WebapiTest.php │ │ │ │ │ │ │ ├── Edit │ │ │ │ │ │ │ │ ├── FormTest.php │ │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ │ │ └── InfoTest.php │ │ │ │ │ │ │ ├── EditTest.php │ │ │ │ │ │ │ ├── GridTest.php │ │ │ │ │ │ │ └── TokensTest.php │ │ │ │ │ │ │ ├── System │ │ │ │ │ │ │ └── Config │ │ │ │ │ │ │ │ └── OauthSectionTest.php │ │ │ │ │ │ │ └── Widget │ │ │ │ │ │ │ └── Grid │ │ │ │ │ │ │ └── Column │ │ │ │ │ │ │ └── Renderer │ │ │ │ │ │ │ ├── Button │ │ │ │ │ │ │ ├── DeleteTest.php │ │ │ │ │ │ │ └── EditTest.php │ │ │ │ │ │ │ └── Link │ │ │ │ │ │ │ └── ActivateTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── IntegrationTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── AdminTokenServiceTest.php │ │ │ │ │ │ ├── AuthorizationServiceTest.php │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ ├── Consolidated │ │ │ │ │ │ │ │ ├── ReaderTest.php │ │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ │ ├── integration.php │ │ │ │ │ │ │ │ │ ├── integrationA.xml │ │ │ │ │ │ │ │ │ └── integrationB.xml │ │ │ │ │ │ │ ├── Integration │ │ │ │ │ │ │ │ ├── ReaderTest.php │ │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ │ ├── api.php │ │ │ │ │ │ │ │ │ ├── apiA.xml │ │ │ │ │ │ │ │ │ └── apiB.xml │ │ │ │ │ │ │ ├── ReaderTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ ├── configA.xml │ │ │ │ │ │ │ │ ├── configB.xml │ │ │ │ │ │ │ │ └── integration.php │ │ │ │ │ │ ├── ConfigBasedIntegrationManagerTest.php │ │ │ │ │ │ ├── CustomerTokenServiceTest.php │ │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ │ ├── IntegrationTest.php │ │ │ │ │ │ │ └── Oauth │ │ │ │ │ │ │ └── TokenTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── customer_with_integration_token.php │ │ │ │ │ │ ├── customer_with_integration_token_rollback.php │ │ │ │ │ │ ├── integration_all_permissions.php │ │ │ │ │ │ └── integration_all_permissions_rollback.php │ │ │ │ │ ├── IntegrationTest.php │ │ │ │ │ ├── LayeredNavigation │ │ │ │ │ └── Block │ │ │ │ │ │ └── Navigation │ │ │ │ │ │ ├── AbstractFiltersTest.php │ │ │ │ │ │ ├── Category │ │ │ │ │ │ ├── BooleanFilterTest.php │ │ │ │ │ │ ├── Bundle │ │ │ │ │ │ │ ├── MultiselectFilterTest.php │ │ │ │ │ │ │ ├── PriceFilterTest.php │ │ │ │ │ │ │ └── SelectFilterTest.php │ │ │ │ │ │ ├── Configurable │ │ │ │ │ │ │ └── PriceFilterTest.php │ │ │ │ │ │ ├── DecimalFilterTest.php │ │ │ │ │ │ ├── FilterScopeTest.php │ │ │ │ │ │ ├── MultipleFiltersTest.php │ │ │ │ │ │ ├── MultiselectFilterTest.php │ │ │ │ │ │ ├── OutOfStockProductsFilterTest.php │ │ │ │ │ │ ├── PriceFilterTest.php │ │ │ │ │ │ └── SelectFilterTest.php │ │ │ │ │ │ ├── CategoryTest.php │ │ │ │ │ │ └── Search │ │ │ │ │ │ ├── BooleanFilterTest.php │ │ │ │ │ │ ├── Bundle │ │ │ │ │ │ └── PriceFilterTest.php │ │ │ │ │ │ ├── DecimalFilterTest.php │ │ │ │ │ │ ├── MultipleFiltersTest.php │ │ │ │ │ │ ├── MultiselectFilterTest.php │ │ │ │ │ │ ├── OutOfStockProductsFilterTest.php │ │ │ │ │ │ ├── PriceFilterTest.php │ │ │ │ │ │ └── SelectFilterTest.php │ │ │ │ │ ├── LoginAsCustomer │ │ │ │ │ └── _files │ │ │ │ │ │ ├── admin.php │ │ │ │ │ │ ├── admin_rollback.php │ │ │ │ │ │ └── customer.php │ │ │ │ │ ├── MediaContent │ │ │ │ │ └── Model │ │ │ │ │ │ ├── ExtractAssetsFromContentTest.php │ │ │ │ │ │ ├── SaveDeleteContentAssetLinksTest.php │ │ │ │ │ │ └── UpdateContentAssetLinksTest.php │ │ │ │ │ ├── MediaContentCatalog │ │ │ │ │ ├── Model │ │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ │ ├── GetAssetIdsByContentFieldTest.php │ │ │ │ │ │ │ └── GetEntityContentTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── category_with_asset.php │ │ │ │ │ │ ├── category_with_asset_rollback.php │ │ │ │ │ │ ├── product_with_asset.php │ │ │ │ │ │ └── product_with_asset_rollback.php │ │ │ │ │ ├── MediaContentCms │ │ │ │ │ ├── Model │ │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ │ └── GetAssetIdsByContentFieldTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── block_with_asset.php │ │ │ │ │ │ ├── block_with_asset_rollback.php │ │ │ │ │ │ ├── page_with_asset.php │ │ │ │ │ │ └── page_with_asset_rollback.php │ │ │ │ │ ├── MediaGallery │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── AssetEndToEndTest.php │ │ │ │ │ │ ├── Directory │ │ │ │ │ │ │ ├── Command │ │ │ │ │ │ │ │ ├── CreateByPathsTest.php │ │ │ │ │ │ │ │ └── DeleteByPathsTest.php │ │ │ │ │ │ │ └── IsExcludedTest.php │ │ │ │ │ │ ├── IsExcludedTest.php │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ │ ├── AssetKeywordsTest.php │ │ │ │ │ │ │ ├── AssetsByIdsTest.php │ │ │ │ │ │ │ ├── AssetsTest.php │ │ │ │ │ │ │ └── DeleteAssetsTest.php │ │ │ │ │ │ └── SearchAssetsTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── media_asset.php │ │ │ │ │ │ └── media_asset_rollback.php │ │ │ │ │ ├── MediaGallerySynchronizationMetadata │ │ │ │ │ ├── Model │ │ │ │ │ │ └── SynchronizeFilesTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── magento.jpg │ │ │ │ │ │ └── magento_metadata.jpg │ │ │ │ │ ├── MediaStorage │ │ │ │ │ ├── Console │ │ │ │ │ │ └── Command │ │ │ │ │ │ │ └── ImageResizeCommandTest.php │ │ │ │ │ ├── Helper │ │ │ │ │ │ └── File │ │ │ │ │ │ │ └── Storage │ │ │ │ │ │ │ └── DatabaseTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ └── File │ │ │ │ │ │ │ ├── Storage │ │ │ │ │ │ │ └── ResponseTest.php │ │ │ │ │ │ │ └── StorageTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── database_mode.php │ │ │ │ │ │ ├── database_mode_rollback.php │ │ │ │ │ │ ├── product_with_missed_image.php │ │ │ │ │ │ ├── product_with_missed_image_rollback.php │ │ │ │ │ │ └── test_file.html │ │ │ │ │ ├── MemoryUsageTest.php │ │ │ │ │ ├── MessageQueue │ │ │ │ │ └── Model │ │ │ │ │ │ ├── Cron │ │ │ │ │ │ └── ConsumersRunnerTest.php │ │ │ │ │ │ └── Plugin │ │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ └── LockTest.php │ │ │ │ │ ├── MsrpGroupedProduct │ │ │ │ │ └── Pricing │ │ │ │ │ │ └── MsrpPriceCalculatorTest.php │ │ │ │ │ ├── Multishipping │ │ │ │ │ ├── Block │ │ │ │ │ │ └── Checkout │ │ │ │ │ │ │ ├── Address │ │ │ │ │ │ │ └── SelectTest.php │ │ │ │ │ │ │ ├── AddressesTest.php │ │ │ │ │ │ │ └── OverviewTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── Checkout │ │ │ │ │ │ │ └── CheckItemsTest.php │ │ │ │ │ │ └── CheckoutTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── billing_address.php │ │ │ │ │ │ ├── items.php │ │ │ │ │ │ ├── items_rollback.php │ │ │ │ │ │ ├── quote.php │ │ │ │ │ │ ├── quote_rollback.php │ │ │ │ │ │ ├── quote_with_configurable_product.php │ │ │ │ │ │ ├── quote_with_configurable_product_rollback.php │ │ │ │ │ │ ├── quote_with_split_items.php │ │ │ │ │ │ ├── simple_product_10.php │ │ │ │ │ │ ├── simple_product_10_rollback.php │ │ │ │ │ │ ├── simple_product_20.php │ │ │ │ │ │ ├── simple_product_20_rollback.php │ │ │ │ │ │ ├── virtual_product_5.php │ │ │ │ │ │ └── virtual_product_5_rollback.php │ │ │ │ │ ├── Model │ │ │ │ │ │ └── Checkout │ │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ └── MultishippingTest.php │ │ │ │ │ ├── Observer │ │ │ │ │ │ └── DisableMultishippingObserverTest.php │ │ │ │ │ └── Plugin │ │ │ │ │ │ └── DisableMultishippingModeTest.php │ │ │ │ │ ├── MysqlMq │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Driver │ │ │ │ │ │ │ └── QueueTest.php │ │ │ │ │ │ ├── ObserverTest.php │ │ │ │ │ │ ├── PublisherConsumerTest.php │ │ │ │ │ │ └── QueueManagementTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── messages.php │ │ │ │ │ │ ├── messages_done_old.php │ │ │ │ │ │ ├── messages_done_recent.php │ │ │ │ │ │ ├── messages_in_progress.php │ │ │ │ │ │ └── queues.php │ │ │ │ │ ├── NewRelicReporting │ │ │ │ │ ├── Model │ │ │ │ │ │ └── Module │ │ │ │ │ │ │ └── CollectTest.php │ │ │ │ │ └── Plugin │ │ │ │ │ │ └── SeparateAppsTest.php │ │ │ │ │ ├── Newsletter │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── Account │ │ │ │ │ │ │ └── LinkTest.php │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ ├── Queue │ │ │ │ │ │ │ └── Edit │ │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ │ │ ├── Subscriber │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ │ └── SubscriberTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ │ ├── NewsletterQueueTest.php │ │ │ │ │ │ │ ├── NewsletterTemplateTest.php │ │ │ │ │ │ │ └── Template │ │ │ │ │ │ │ │ └── DropTest.php │ │ │ │ │ │ ├── Ajax │ │ │ │ │ │ │ └── StatusTest.php │ │ │ │ │ │ ├── Manage │ │ │ │ │ │ │ └── SaveTest.php │ │ │ │ │ │ ├── Subscriber │ │ │ │ │ │ │ └── NewActionTest.php │ │ │ │ │ │ └── SubscriberTest.php │ │ │ │ │ ├── Helper │ │ │ │ │ │ └── DataTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Plugin │ │ │ │ │ │ │ └── PluginTest.php │ │ │ │ │ │ ├── QueueTest.php │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ │ ├── Problem │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ ├── Queue │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ ├── Subscriber │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ └── SubscriberTest.php │ │ │ │ │ │ ├── SubscriberTest.php │ │ │ │ │ │ └── TemplateTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── customer_with_subscription.php │ │ │ │ │ │ ├── customer_with_subscription_rollback.php │ │ │ │ │ │ ├── guest_subscriber.php │ │ │ │ │ │ ├── guest_subscriber_rollback.php │ │ │ │ │ │ ├── newsletter_sample.php │ │ │ │ │ │ ├── newsletter_unconfirmed_customer.php │ │ │ │ │ │ ├── newsletter_unconfirmed_customer_rollback.php │ │ │ │ │ │ ├── problems.php │ │ │ │ │ │ ├── queue.php │ │ │ │ │ │ ├── subscribers.php │ │ │ │ │ │ ├── subscribers_rollback.php │ │ │ │ │ │ ├── template.php │ │ │ │ │ │ ├── three_subscribers.php │ │ │ │ │ │ └── three_subscribers_rollback.php │ │ │ │ │ ├── OfflineShipping │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── System │ │ │ │ │ │ │ └── Config │ │ │ │ │ │ │ └── ImportExportTableratesTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ └── CollectRatesTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── tablerate_create_file_in_tmp.php │ │ │ │ │ │ ├── tablerate_create_file_in_tmp_rollback.php │ │ │ │ │ │ ├── tablerates.csv │ │ │ │ │ │ ├── tablerates.php │ │ │ │ │ │ ├── tablerates_price.php │ │ │ │ │ │ ├── tablerates_price_rollback.php │ │ │ │ │ │ ├── tablerates_rollback.php │ │ │ │ │ │ ├── tablerates_second_website.php │ │ │ │ │ │ ├── tablerates_second_website_rollback.php │ │ │ │ │ │ ├── tablerates_weight.php │ │ │ │ │ │ └── tablerates_weight_rollback.php │ │ │ │ │ ├── PageCache │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── JavascriptTest.php │ │ │ │ │ │ └── System │ │ │ │ │ │ │ └── Config │ │ │ │ │ │ │ └── Form │ │ │ │ │ │ │ └── Field │ │ │ │ │ │ │ └── ExportTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ ├── Layout │ │ │ │ │ │ │ ├── DepersonalizePluginTest.php │ │ │ │ │ │ │ └── MergeTest.php │ │ │ │ │ │ ├── System │ │ │ │ │ │ │ └── Config │ │ │ │ │ │ │ │ └── Backend │ │ │ │ │ │ │ │ ├── TtlTest.php │ │ │ │ │ │ │ │ └── VarnishTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── result.vcl │ │ │ │ │ │ │ └── test.vcl │ │ │ │ │ ├── Observer │ │ │ │ │ │ └── SwitchPageCacheOnMaintenance │ │ │ │ │ │ │ └── PageCacheStateTest.php │ │ │ │ │ └── Plugin │ │ │ │ │ │ └── RegisterFormKeyFromCookieTest.php │ │ │ │ │ ├── Payment │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── InfoTest.php │ │ │ │ │ │ └── Transparent │ │ │ │ │ │ │ └── IframeTest.php │ │ │ │ │ ├── Helper │ │ │ │ │ │ └── DataTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ └── ReaderTest.php │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ ├── PaymentInfoTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── payment.xml │ │ │ │ │ │ │ └── payment2.xml │ │ │ │ │ ├── Observer │ │ │ │ │ │ └── UpdateOrderStatusForPaymentMethodsObserverTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── order_status.php │ │ │ │ │ │ └── payment_info.php │ │ │ │ │ ├── Paypal │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ └── Paypal │ │ │ │ │ │ │ └── ReportsTest.php │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ │ └── Billing │ │ │ │ │ │ │ │ └── Agreement │ │ │ │ │ │ │ │ └── View │ │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ │ └── InfoTest.php │ │ │ │ │ │ ├── Billing │ │ │ │ │ │ │ └── Agreement │ │ │ │ │ │ │ │ └── ViewTest.php │ │ │ │ │ │ ├── Bml │ │ │ │ │ │ │ └── BannersTest.php │ │ │ │ │ │ ├── Express │ │ │ │ │ │ │ ├── Review │ │ │ │ │ │ │ │ └── BillingTest.php │ │ │ │ │ │ │ └── ReviewTest.php │ │ │ │ │ │ └── Payment │ │ │ │ │ │ │ └── Form │ │ │ │ │ │ │ └── Billing │ │ │ │ │ │ │ └── AgreementTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ │ ├── Billing │ │ │ │ │ │ │ │ ├── Agreement │ │ │ │ │ │ │ │ │ ├── CancelTest.php │ │ │ │ │ │ │ │ │ ├── DeleteTest.php │ │ │ │ │ │ │ │ │ ├── GridTest.php │ │ │ │ │ │ │ │ │ ├── IndexTest.php │ │ │ │ │ │ │ │ │ └── ViewTest.php │ │ │ │ │ │ │ │ └── AgreementTest.php │ │ │ │ │ │ │ ├── Express │ │ │ │ │ │ │ │ └── AuthorizationTest.php │ │ │ │ │ │ │ ├── Paypal │ │ │ │ │ │ │ │ └── Reports │ │ │ │ │ │ │ │ │ ├── DetailsTest.php │ │ │ │ │ │ │ │ │ ├── FetchTest.php │ │ │ │ │ │ │ │ │ └── IndexTest.php │ │ │ │ │ │ │ └── System │ │ │ │ │ │ │ │ └── ConfigTest.php │ │ │ │ │ │ ├── Billing │ │ │ │ │ │ │ └── AgreementTest.php │ │ │ │ │ │ ├── ExpressTest.php │ │ │ │ │ │ ├── HostedproTest.php │ │ │ │ │ │ ├── Payflow │ │ │ │ │ │ │ └── SilentPostTest.php │ │ │ │ │ │ ├── PayflowTest.php │ │ │ │ │ │ ├── PayflowadvancedTest.php │ │ │ │ │ │ └── Transparent │ │ │ │ │ │ │ ├── RedirectTest.php │ │ │ │ │ │ │ └── ResponseTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── default_payment_configuration.php │ │ │ │ │ │ ├── default_payment_configuration_rollback.php │ │ │ │ │ │ ├── store_payment_configuration.php │ │ │ │ │ │ ├── store_payment_configuration_rollback.php │ │ │ │ │ │ ├── website_payment_configuration.php │ │ │ │ │ │ └── website_payment_configuration_rollback.php │ │ │ │ │ ├── Helper │ │ │ │ │ │ └── DataTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Api │ │ │ │ │ │ │ ├── NvpTest.php │ │ │ │ │ │ │ └── PayflowNvpTest.php │ │ │ │ │ │ ├── Express │ │ │ │ │ │ │ └── CheckoutTest.php │ │ │ │ │ │ ├── Hostedpro │ │ │ │ │ │ │ └── RequestTest.php │ │ │ │ │ │ ├── HostedproTest.php │ │ │ │ │ │ ├── IpnTest.php │ │ │ │ │ │ ├── Payflow │ │ │ │ │ │ │ ├── Service │ │ │ │ │ │ │ │ └── Request │ │ │ │ │ │ │ │ │ └── SecureTokenTest.php │ │ │ │ │ │ │ └── TransparentTest.php │ │ │ │ │ │ ├── PayflowproTest.php │ │ │ │ │ │ ├── PayflowproVoidTest.php │ │ │ │ │ │ ├── Payment │ │ │ │ │ │ │ └── Method │ │ │ │ │ │ │ │ └── Billing │ │ │ │ │ │ │ │ └── AbstractAgreementTest.php │ │ │ │ │ │ ├── Report │ │ │ │ │ │ │ └── SettlementTest.php │ │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ │ └── Billing │ │ │ │ │ │ │ └── Agreement │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── address_data.php │ │ │ │ │ │ ├── billing_agreement.php │ │ │ │ │ │ ├── fixed_discount.php │ │ │ │ │ │ ├── fixed_discount_rollback.php │ │ │ │ │ │ ├── ipn.php │ │ │ │ │ │ ├── ipn_failed.php │ │ │ │ │ │ ├── ipn_refund.php │ │ │ │ │ │ ├── order_express.php │ │ │ │ │ │ ├── order_express_payment_action_order.php │ │ │ │ │ │ ├── order_express_with_invoice_and_creditmemo.php │ │ │ │ │ │ ├── order_express_with_invoice_and_shipping.php │ │ │ │ │ │ ├── order_express_with_invoice_payment_review.php │ │ │ │ │ │ ├── order_express_with_tax.php │ │ │ │ │ │ ├── order_hostedpro.php │ │ │ │ │ │ ├── order_payflow_link.php │ │ │ │ │ │ ├── order_payflow_link_with_payment.php │ │ │ │ │ │ ├── order_payflow_link_with_payment_rollback.php │ │ │ │ │ │ ├── order_payflowpro.php │ │ │ │ │ │ ├── quote_express.php │ │ │ │ │ │ ├── quote_express_configurable.php │ │ │ │ │ │ ├── quote_express_with_customer.php │ │ │ │ │ │ ├── quote_order_hostedpro.php │ │ │ │ │ │ ├── quote_payflowpro.php │ │ │ │ │ │ ├── quote_payflowpro_rollback.php │ │ │ │ │ │ ├── quote_payment.php │ │ │ │ │ │ ├── quote_payment_express.php │ │ │ │ │ │ ├── quote_payment_express_with_customer.php │ │ │ │ │ │ ├── quote_payment_payflow.php │ │ │ │ │ │ ├── quote_with_fpt.php │ │ │ │ │ │ └── virtual_quote_with_empty_billing_address.php │ │ │ │ │ ├── PaypalGraphQl │ │ │ │ │ ├── Model │ │ │ │ │ │ └── Resolver │ │ │ │ │ │ │ ├── Customer │ │ │ │ │ │ │ ├── PaypalExpressSetPaymentMethodTest.php │ │ │ │ │ │ │ ├── PaypalExpressTokenTest.php │ │ │ │ │ │ │ ├── PlaceOrderWithPayflowLinkTest.php │ │ │ │ │ │ │ ├── PlaceOrderWithPayflowProCCVaultTest.php │ │ │ │ │ │ │ ├── PlaceOrderWithPayflowProTest.php │ │ │ │ │ │ │ └── SaveCartDataWithPayflowProTest.php │ │ │ │ │ │ │ └── Guest │ │ │ │ │ │ │ ├── GetHostedProSecureUrlTest.php │ │ │ │ │ │ │ ├── GetPayflowLinkTokenTest.php │ │ │ │ │ │ │ ├── PaypalExpressSetPaymentMethodTest.php │ │ │ │ │ │ │ ├── PaypalExpressTokenTest.php │ │ │ │ │ │ │ ├── PaypalPayflowProSetPaymentMethodTest.php │ │ │ │ │ │ │ ├── PaypalPayflowProTokenExceptionTest.php │ │ │ │ │ │ │ ├── PaypalPayflowProTokenTest.php │ │ │ │ │ │ │ ├── PlaceOrderWithHostedProTest.php │ │ │ │ │ │ │ ├── PlaceOrderWithPayflowLinkTest.php │ │ │ │ │ │ │ ├── PlaceOrderWithPaymentsAdvancedTest.php │ │ │ │ │ │ │ └── SetPaymentMethodAsPayflowLinkTest.php │ │ │ │ │ ├── PaypalExpressAbstractTest.php │ │ │ │ │ ├── PaypalPayflowProAbstractTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── add_simple_product_payflowLink.php │ │ │ │ │ │ ├── customer_paypal_create_token_request.php │ │ │ │ │ │ ├── guest_paypal_create_token_request.php │ │ │ │ │ │ ├── hosted_pro_nvp_request.php │ │ │ │ │ │ ├── hosted_pro_nvp_response.php │ │ │ │ │ │ ├── paypal_place_order_request.php │ │ │ │ │ │ └── paypal_set_payer_id_repsonse.php │ │ │ │ │ ├── Persistent │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── Form │ │ │ │ │ │ │ └── RememberTest.php │ │ │ │ │ │ └── Header │ │ │ │ │ │ │ └── AdditionalTest.php │ │ │ │ │ ├── Helper │ │ │ │ │ │ └── SessionTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Checkout │ │ │ │ │ │ │ ├── ConfigProviderPluginTest.php │ │ │ │ │ │ │ └── GuestPaymentInformationManagementPluginTest.php │ │ │ │ │ │ ├── CheckoutConfigProviderTest.php │ │ │ │ │ │ ├── ObserverTest.php │ │ │ │ │ │ ├── Persistent │ │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ ├── expectedArray.php │ │ │ │ │ │ │ │ ├── expectedBlocksArray.php │ │ │ │ │ │ │ │ └── persistent.xml │ │ │ │ │ │ ├── QuoteManagerTest.php │ │ │ │ │ │ └── SessionTest.php │ │ │ │ │ ├── Observer │ │ │ │ │ │ ├── EmulateCustomerObserverTest.php │ │ │ │ │ │ ├── EmulateQuoteObserverTest.php │ │ │ │ │ │ ├── SynchronizePersistentOnLoginObserverTest.php │ │ │ │ │ │ └── SynchronizePersistentOnLogoutObserverTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── persistent.php │ │ │ │ │ │ ├── persistent_rollback.php │ │ │ │ │ │ ├── persistent_with_customer_quote_and_cookie.php │ │ │ │ │ │ └── persistent_with_customer_quote_and_cookie_rollback.php │ │ │ │ │ ├── Phpserver │ │ │ │ │ └── PhpserverTest.php │ │ │ │ │ ├── ProductAlert │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── Add │ │ │ │ │ │ │ └── StockTest.php │ │ │ │ │ │ └── Unsubscribe │ │ │ │ │ │ │ └── StockTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── EmailTest.php │ │ │ │ │ │ └── ObserverTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── customer_unsubscribe_stock.php │ │ │ │ │ │ ├── customer_unsubscribe_stock_rollback.php │ │ │ │ │ │ ├── i18n │ │ │ │ │ │ └── pt_BR.csv │ │ │ │ │ │ ├── product_alert.php │ │ │ │ │ │ ├── product_alert_with_store.php │ │ │ │ │ │ └── product_alert_with_store_rollback.php │ │ │ │ │ ├── Quote │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── quote_sec_website.php │ │ │ │ │ │ ├── quote_sec_website_rollback.php │ │ │ │ │ │ ├── quote_without_customer_email.php │ │ │ │ │ │ ├── simple_product.php │ │ │ │ │ │ └── simple_product_rollback.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── CustomerManagementTest.php │ │ │ │ │ │ ├── MaskedQuoteIdToQuoteIdTest.php │ │ │ │ │ │ ├── Plugin │ │ │ │ │ │ │ └── UpdateQuoteStoreTest.php │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ └── Plugin │ │ │ │ │ │ │ │ ├── RemoveQuoteItemsTest.php │ │ │ │ │ │ │ │ └── UpdateQuoteItemsTest.php │ │ │ │ │ │ ├── Quote │ │ │ │ │ │ │ ├── AddressTest.php │ │ │ │ │ │ │ └── Item │ │ │ │ │ │ │ │ ├── CartItemPersisterTest.php │ │ │ │ │ │ │ │ ├── RepositoryTest.php │ │ │ │ │ │ │ │ └── UpdaterTest.php │ │ │ │ │ │ ├── QuoteIdToMaskedQuoteIdTest.php │ │ │ │ │ │ ├── QuoteInfiniteLoopTest.php │ │ │ │ │ │ ├── QuoteManagementTest.php │ │ │ │ │ │ ├── QuoteRepositoryTest.php │ │ │ │ │ │ ├── QuoteTest.php │ │ │ │ │ │ ├── QuoteValidatorTest.php │ │ │ │ │ │ └── ShippingMethodManagementTest.php │ │ │ │ │ ├── Observer │ │ │ │ │ │ └── Frontend │ │ │ │ │ │ │ └── Quote │ │ │ │ │ │ │ └── Address │ │ │ │ │ │ │ └── CollectTotalsObserverTest.php │ │ │ │ │ ├── _files │ │ │ │ │ │ ├── empty_quote.php │ │ │ │ │ │ ├── empty_quote_rollback.php │ │ │ │ │ │ ├── is_not_salable_product.php │ │ │ │ │ │ ├── is_salable_product.php │ │ │ │ │ │ ├── quote_for_customer_and_custom_store.php │ │ │ │ │ │ └── quote_for_customer_and_custom_store_rollback.php │ │ │ │ │ └── etc │ │ │ │ │ │ └── extension_attributes.xml │ │ │ │ │ ├── ReleaseNotification │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── Dashboard │ │ │ │ │ │ │ └── IndexTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ │ └── Viewer │ │ │ │ │ │ │ └── LoggerTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ └── validContent.php │ │ │ │ │ ├── Reports │ │ │ │ │ ├── Block │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ └── Form │ │ │ │ │ │ │ │ └── Field │ │ │ │ │ │ │ │ └── YtdStartTest.php │ │ │ │ │ │ │ ├── Filter │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ │ │ ├── GridTest.php │ │ │ │ │ │ │ ├── Sales │ │ │ │ │ │ │ ├── Bestsellers │ │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ │ ├── Coupons │ │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ │ ├── Invoiced │ │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ │ ├── Refunded │ │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ │ ├── Sales │ │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ │ ├── Shipping │ │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ │ └── Tax │ │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ │ └── Shopcart │ │ │ │ │ │ │ ├── Abandoned │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ │ ├── GridTestAbstract.php │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── Report │ │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ ├── SoldTest.php │ │ │ │ │ │ │ └── ViewedTest.php │ │ │ │ │ │ │ └── Statistics │ │ │ │ │ │ │ └── IndexTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ └── DataRetrieverTest.php │ │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ └── Lowstock │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ ├── Report │ │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ │ └── Viewed │ │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ └── Sold │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ └── Review │ │ │ │ │ │ │ ├── Customer │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── orders.php │ │ │ │ │ │ ├── recently_compared_out_of_stock_product.php │ │ │ │ │ │ ├── recently_compared_out_of_stock_product_rollback.php │ │ │ │ │ │ ├── recently_compared_product.php │ │ │ │ │ │ ├── recently_compared_product_rollback.php │ │ │ │ │ │ ├── recently_compared_product_second_website.php │ │ │ │ │ │ ├── recently_compared_product_second_website_rollback.php │ │ │ │ │ │ ├── recently_viewed_disabled_product_by_customer.php │ │ │ │ │ │ ├── recently_viewed_disabled_product_by_customer_rollback.php │ │ │ │ │ │ ├── recently_viewed_product_by_customer.php │ │ │ │ │ │ ├── recently_viewed_product_by_customer_rollback.php │ │ │ │ │ │ ├── recently_viewed_product_by_customer_second_website.php │ │ │ │ │ │ ├── recently_viewed_product_by_customer_second_website_rollback.php │ │ │ │ │ │ └── viewed_products.php │ │ │ │ │ ├── Review │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── Account │ │ │ │ │ │ │ └── LinkTest.php │ │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ │ ├── Edit │ │ │ │ │ │ │ │ ├── FormTest.php │ │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ │ │ ├── FormTest.php │ │ │ │ │ │ │ │ │ └── ReviewsTest.php │ │ │ │ │ │ │ └── MainTest.php │ │ │ │ │ │ ├── Customer │ │ │ │ │ │ │ ├── ListCustomerTest.php │ │ │ │ │ │ │ └── ViewTest.php │ │ │ │ │ │ ├── FormTest.php │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ └── ReviewRendererTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ │ ├── Customer │ │ │ │ │ │ │ │ └── ProductReviewsTest.php │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ │ ├── EditTest.php │ │ │ │ │ │ │ │ └── MassUpdateTest.php │ │ │ │ │ │ ├── CaseCheckAddingProductReviewTest.php │ │ │ │ │ │ └── ProductTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ │ ├── Rating │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ ├── RatingTest.php │ │ │ │ │ │ │ └── Review │ │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ └── ReviewTest.php │ │ │ │ │ ├── Observer │ │ │ │ │ │ └── ProcessProductAfterDeleteEventObserverTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── config.php │ │ │ │ │ │ ├── customer_review.php │ │ │ │ │ │ ├── customer_review_with_rating.php │ │ │ │ │ │ ├── customer_review_with_rating_rollback.php │ │ │ │ │ │ ├── different_reviews.php │ │ │ │ │ │ ├── different_reviews_rollback.php │ │ │ │ │ │ ├── disable_config.php │ │ │ │ │ │ ├── review_xss.php │ │ │ │ │ │ ├── reviews.php │ │ │ │ │ │ ├── set_position_and_add_store_to_all_ratings.php │ │ │ │ │ │ └── set_position_and_add_store_to_all_ratings_rollback.php │ │ │ │ │ ├── Rss │ │ │ │ │ └── Controller │ │ │ │ │ │ └── Feed │ │ │ │ │ │ └── IndexTest.php │ │ │ │ │ ├── Rule │ │ │ │ │ └── Model │ │ │ │ │ │ └── Condition │ │ │ │ │ │ ├── AbstractTest.php │ │ │ │ │ │ └── Sql │ │ │ │ │ │ └── BuilderTest.php │ │ │ │ │ ├── Sales │ │ │ │ │ ├── Api │ │ │ │ │ │ ├── CreditmemoCommentRepositoryInterfaceTest.php │ │ │ │ │ │ ├── CreditmemoItemRepositoryInterfaceTest.php │ │ │ │ │ │ ├── InvoiceCommentRepositoryInterfaceTest.php │ │ │ │ │ │ ├── InvoiceItemRepositoryInterfaceTest.php │ │ │ │ │ │ ├── OrderCustomerDelegateInterfaceTest.php │ │ │ │ │ │ ├── OrderStatusHistoryRepositoryInterfaceTest.php │ │ │ │ │ │ ├── ShipmentCommentRepositoryInterfaceTest.php │ │ │ │ │ │ ├── ShipmentItemRepositoryInterfaceTest.php │ │ │ │ │ │ └── ShipmentTrackRepositoryInterfaceTest.php │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ │ ├── Items │ │ │ │ │ │ │ │ ├── AbstractTest.php │ │ │ │ │ │ │ │ └── Column │ │ │ │ │ │ │ │ │ └── NameTest.php │ │ │ │ │ │ │ ├── Order │ │ │ │ │ │ │ │ ├── Address │ │ │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ │ │ │ ├── AddressTest.php │ │ │ │ │ │ │ │ ├── Create │ │ │ │ │ │ │ │ │ ├── AbstractAddressFormTest.php │ │ │ │ │ │ │ │ │ ├── Billing │ │ │ │ │ │ │ │ │ │ ├── FormTest.php │ │ │ │ │ │ │ │ │ │ └── Method │ │ │ │ │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ │ │ │ │ ├── Form │ │ │ │ │ │ │ │ │ │ ├── AbstractTest.php │ │ │ │ │ │ │ │ │ │ ├── AccountTest.php │ │ │ │ │ │ │ │ │ │ └── AddressTest.php │ │ │ │ │ │ │ │ │ ├── FormTest.php │ │ │ │ │ │ │ │ │ ├── Giftmessage │ │ │ │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ │ │ │ │ ├── HeaderTest.php │ │ │ │ │ │ │ │ │ ├── Items │ │ │ │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ │ │ │ ├── Shipping │ │ │ │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ │ │ │ │ └── Sidebar │ │ │ │ │ │ │ │ │ │ └── CartTest.php │ │ │ │ │ │ │ │ ├── Invoice │ │ │ │ │ │ │ │ │ └── Create │ │ │ │ │ │ │ │ │ │ └── ItemsTest.php │ │ │ │ │ │ │ │ ├── TotalsTest.php │ │ │ │ │ │ │ │ ├── View │ │ │ │ │ │ │ │ │ └── InfoTest.php │ │ │ │ │ │ │ │ └── ViewTest.php │ │ │ │ │ │ │ ├── Report │ │ │ │ │ │ │ │ └── Filter │ │ │ │ │ │ │ │ │ └── Form │ │ │ │ │ │ │ │ │ └── CouponTest.php │ │ │ │ │ │ │ └── TotalsTest.php │ │ │ │ │ │ └── Order │ │ │ │ │ │ │ ├── CommentsTest.php │ │ │ │ │ │ │ ├── Creditmemo │ │ │ │ │ │ │ ├── ItemsTest.php │ │ │ │ │ │ │ └── TotalsTest.php │ │ │ │ │ │ │ ├── HistoryTest.php │ │ │ │ │ │ │ ├── Info │ │ │ │ │ │ │ └── ButtonsTest.php │ │ │ │ │ │ │ ├── InfoTest.php │ │ │ │ │ │ │ ├── Invoice │ │ │ │ │ │ │ ├── ItemsTest.php │ │ │ │ │ │ │ └── TotalsTest.php │ │ │ │ │ │ │ ├── Item │ │ │ │ │ │ │ └── Renderer │ │ │ │ │ │ │ │ └── DefaultRendererTest.php │ │ │ │ │ │ │ ├── ItemsTest.php │ │ │ │ │ │ │ ├── PrintOrder │ │ │ │ │ │ │ ├── CreditmemoTest.php │ │ │ │ │ │ │ ├── InvoiceTest.php │ │ │ │ │ │ │ └── ShipmentTest.php │ │ │ │ │ │ │ ├── PrintShipmentTest.php │ │ │ │ │ │ │ └── TotalsTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ │ └── Order │ │ │ │ │ │ │ │ ├── AddressSaveTest.php │ │ │ │ │ │ │ │ ├── AddressTest.php │ │ │ │ │ │ │ │ ├── AuthorizationMock.php │ │ │ │ │ │ │ │ ├── Create │ │ │ │ │ │ │ │ ├── IndexTest.php │ │ │ │ │ │ │ │ ├── LoadBlockTest.php │ │ │ │ │ │ │ │ ├── ReorderTest.php │ │ │ │ │ │ │ │ └── SaveTest.php │ │ │ │ │ │ │ │ ├── CreateTest.php │ │ │ │ │ │ │ │ ├── Creditmemo │ │ │ │ │ │ │ │ ├── AbstractCreditmemoControllerTest.php │ │ │ │ │ │ │ │ ├── AddCommentTest.php │ │ │ │ │ │ │ │ ├── ExportTest.php │ │ │ │ │ │ │ │ └── SaveTest.php │ │ │ │ │ │ │ │ ├── CreditmemoTest.php │ │ │ │ │ │ │ │ ├── EmailTest.php │ │ │ │ │ │ │ │ ├── ExportBase.php │ │ │ │ │ │ │ │ ├── ExportTest.php │ │ │ │ │ │ │ │ ├── Invoice │ │ │ │ │ │ │ │ ├── AbstractInvoiceControllerTest.php │ │ │ │ │ │ │ │ ├── AddCommentTest.php │ │ │ │ │ │ │ │ ├── EmailTest.php │ │ │ │ │ │ │ │ ├── ExportTest.php │ │ │ │ │ │ │ │ ├── NewActionTest.php │ │ │ │ │ │ │ │ ├── SaveTest.php │ │ │ │ │ │ │ │ ├── StartTest.php │ │ │ │ │ │ │ │ └── UpdateQtyTest.php │ │ │ │ │ │ │ │ ├── Shipment │ │ │ │ │ │ │ │ └── ExportTest.php │ │ │ │ │ │ │ │ └── Stub │ │ │ │ │ │ │ │ └── OrderCreateStub.php │ │ │ │ │ │ ├── Guest │ │ │ │ │ │ │ ├── FormTest.php │ │ │ │ │ │ │ ├── ReorderTest.php │ │ │ │ │ │ │ └── ViewTest.php │ │ │ │ │ │ └── Order │ │ │ │ │ │ │ └── ReorderTest.php │ │ │ │ │ ├── Cron │ │ │ │ │ │ └── CleanExpiredQuotesTest.php │ │ │ │ │ ├── CustomerData │ │ │ │ │ │ └── LastOrderedItemsTest.php │ │ │ │ │ ├── Helper │ │ │ │ │ │ ├── AdminTest.php │ │ │ │ │ │ └── ReorderTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── AbstractCollectorPositionsTest.php │ │ │ │ │ │ ├── AdminOrder │ │ │ │ │ │ │ └── CreateTest.php │ │ │ │ │ │ ├── Convert │ │ │ │ │ │ │ └── OrderTest.php │ │ │ │ │ │ ├── CronJob │ │ │ │ │ │ │ └── CleanExpiredOrdersTest.php │ │ │ │ │ │ ├── GridAsyncInsertTest.php │ │ │ │ │ │ ├── InvoiceEmailSenderHandlerTest.php │ │ │ │ │ │ ├── Order │ │ │ │ │ │ │ ├── Address │ │ │ │ │ │ │ │ └── RendererTest.php │ │ │ │ │ │ │ ├── AddressRepositoryTest.php │ │ │ │ │ │ │ ├── AddressTest.php │ │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ │ ├── CreateTest.php │ │ │ │ │ │ │ ├── CreditmemoFactoryTest.php │ │ │ │ │ │ │ ├── Email │ │ │ │ │ │ │ │ └── Sender │ │ │ │ │ │ │ │ │ ├── CreditmemoSenderTest.php │ │ │ │ │ │ │ │ │ ├── InvoiceSenderTest.php │ │ │ │ │ │ │ │ │ ├── OrderSenderTest.php │ │ │ │ │ │ │ │ │ └── ShipmentSenderTest.php │ │ │ │ │ │ │ ├── Invoice │ │ │ │ │ │ │ │ └── GetLogoFileTest.php │ │ │ │ │ │ │ ├── InvoiceTest.php │ │ │ │ │ │ │ ├── ItemRepositoryTest.php │ │ │ │ │ │ │ ├── ItemTest.php │ │ │ │ │ │ │ ├── Payment │ │ │ │ │ │ │ │ ├── RepositoryTest.php │ │ │ │ │ │ │ │ └── TransactionTest.php │ │ │ │ │ │ │ ├── Reorder │ │ │ │ │ │ │ │ └── UnavailableProductsProviderTest.php │ │ │ │ │ │ │ ├── ShipmentDocumentFactoryTest.php │ │ │ │ │ │ │ ├── ShipmentTest.php │ │ │ │ │ │ │ └── StatusTest.php │ │ │ │ │ │ ├── OrderIncrementIdCheckerTest.php │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ │ ├── Order │ │ │ │ │ │ │ │ ├── Address │ │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ │ ├── Grid │ │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ │ ├── Payment │ │ │ │ │ │ │ │ │ └── EncryptionUpdateTest.php │ │ │ │ │ │ │ │ └── StatusTest.php │ │ │ │ │ │ │ ├── OrderTest.php │ │ │ │ │ │ │ ├── Report │ │ │ │ │ │ │ │ ├── Bestsellers │ │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ │ ├── Invoiced │ │ │ │ │ │ │ │ │ └── Collection │ │ │ │ │ │ │ │ │ │ ├── InvoicedTest.php │ │ │ │ │ │ │ │ │ │ └── OrderTest.php │ │ │ │ │ │ │ │ ├── Refunded │ │ │ │ │ │ │ │ │ └── Collection │ │ │ │ │ │ │ │ │ │ ├── OrderTest.php │ │ │ │ │ │ │ │ │ │ └── RefundedTest.php │ │ │ │ │ │ │ │ └── Shipping │ │ │ │ │ │ │ │ │ └── Collection │ │ │ │ │ │ │ │ │ ├── OrderTest.php │ │ │ │ │ │ │ │ │ └── ShipmentTest.php │ │ │ │ │ │ │ └── Sale │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ └── Service │ │ │ │ │ │ │ ├── InvoiceServiceTest.php │ │ │ │ │ │ │ └── PaymentFailuresServiceTest.php │ │ │ │ │ ├── Observer │ │ │ │ │ │ └── Backend │ │ │ │ │ │ │ └── CustomerQuoteTest.php │ │ │ │ │ ├── _files │ │ │ │ │ │ ├── address.php │ │ │ │ │ │ ├── address_data.php │ │ │ │ │ │ ├── address_list.php │ │ │ │ │ │ ├── address_list_rollback.php │ │ │ │ │ │ ├── assign_status_to_state.php │ │ │ │ │ │ ├── creditmemo_comments_for_search.php │ │ │ │ │ │ ├── creditmemo_for_get.php │ │ │ │ │ │ ├── creditmemo_for_get_rollback.php │ │ │ │ │ │ ├── creditmemo_items_for_search.php │ │ │ │ │ │ ├── creditmemo_list.php │ │ │ │ │ │ ├── creditmemo_list_rollback.php │ │ │ │ │ │ ├── creditmemo_with_grouped_product.php │ │ │ │ │ │ ├── creditmemo_with_grouped_product_rollback.php │ │ │ │ │ │ ├── creditmemo_with_list.php │ │ │ │ │ │ ├── creditmemo_with_list_rollback.php │ │ │ │ │ │ ├── customer_creditmemo_with_two_items.php │ │ │ │ │ │ ├── customer_creditmemo_with_two_items_rollback.php │ │ │ │ │ │ ├── customer_invoice_with_two_products_and_custom_options.php │ │ │ │ │ │ ├── customer_invoice_with_two_products_and_custom_options_rollback.php │ │ │ │ │ │ ├── customer_multiple_invoices_with_two_products_and_custom_options.php │ │ │ │ │ │ ├── customer_multiple_invoices_with_two_products_and_custom_options_rollback.php │ │ │ │ │ │ ├── customer_order_item_with_product_and_custom_options.php │ │ │ │ │ │ ├── customer_order_item_with_product_and_custom_options_rollback.php │ │ │ │ │ │ ├── customer_order_with_simple_product.php │ │ │ │ │ │ ├── customer_order_with_simple_product_rollback.php │ │ │ │ │ │ ├── customer_order_with_taxable_product.php │ │ │ │ │ │ ├── customer_order_with_taxable_product_rollback.php │ │ │ │ │ │ ├── customer_order_with_two_items.php │ │ │ │ │ │ ├── customer_order_with_two_items_rollback.php │ │ │ │ │ │ ├── customers_with_invoices.php │ │ │ │ │ │ ├── customers_with_invoices_rollback.php │ │ │ │ │ │ ├── default_rollback.php │ │ │ │ │ │ ├── guest_quote_with_addresses.php │ │ │ │ │ │ ├── guest_quote_with_addresses_rollback.php │ │ │ │ │ │ ├── invoice.php │ │ │ │ │ │ ├── invoice_comments_for_search.php │ │ │ │ │ │ ├── invoice_fixture_store_order.php │ │ │ │ │ │ ├── invoice_items_for_search.php │ │ │ │ │ │ ├── invoice_list.php │ │ │ │ │ │ ├── invoice_list_different_stores.php │ │ │ │ │ │ ├── invoice_list_different_stores_rollback.php │ │ │ │ │ │ ├── invoice_list_rollback.php │ │ │ │ │ │ ├── invoice_payflowpro.php │ │ │ │ │ │ ├── invoice_rollback.php │ │ │ │ │ │ ├── invoice_with_bundle.php │ │ │ │ │ │ ├── invoice_with_bundle_rollback.php │ │ │ │ │ │ ├── invoice_with_send_email_flag.php │ │ │ │ │ │ ├── invoice_with_send_email_flag_rollback.php │ │ │ │ │ │ ├── invoices_for_items.php │ │ │ │ │ │ ├── invoices_for_items_rollback.php │ │ │ │ │ │ ├── order.php │ │ │ │ │ │ ├── order_address_with_multi_attribute.php │ │ │ │ │ │ ├── order_address_with_multi_attribute_rollback.php │ │ │ │ │ │ ├── order_alphanumeric_id.php │ │ │ │ │ │ ├── order_by_guest_with_simple_product.php │ │ │ │ │ │ ├── order_by_guest_with_simple_product_rollback.php │ │ │ │ │ │ ├── order_closed.php │ │ │ │ │ │ ├── order_closed_rollback.php │ │ │ │ │ │ ├── order_complete.php │ │ │ │ │ │ ├── order_complete_rollback.php │ │ │ │ │ │ ├── order_configurable_product.php │ │ │ │ │ │ ├── order_configurable_product_rollback.php │ │ │ │ │ │ ├── order_different_addresses.php │ │ │ │ │ │ ├── order_fixture_store.php │ │ │ │ │ │ ├── order_fixture_store_rollback.php │ │ │ │ │ │ ├── order_from_past.php │ │ │ │ │ │ ├── order_info.php │ │ │ │ │ │ ├── order_item_list.php │ │ │ │ │ │ ├── order_item_with_configurable_for_reorder.php │ │ │ │ │ │ ├── order_item_with_configurable_for_reorder_rollback.php │ │ │ │ │ │ ├── order_list.php │ │ │ │ │ │ ├── order_list_rollback.php │ │ │ │ │ │ ├── order_list_with_invoice.php │ │ │ │ │ │ ├── order_list_with_invoice_rollback.php │ │ │ │ │ │ ├── order_list_with_tax.php │ │ │ │ │ │ ├── order_list_with_tax_rollback.php │ │ │ │ │ │ ├── order_new.php │ │ │ │ │ │ ├── order_new_rollback.php │ │ │ │ │ │ ├── order_paid_with_payflowpro.php │ │ │ │ │ │ ├── order_payment_list.php │ │ │ │ │ │ ├── order_pending_payment.php │ │ │ │ │ │ ├── order_rollback.php │ │ │ │ │ │ ├── order_shipping.php │ │ │ │ │ │ ├── order_shipping_address_different_to_billing.php │ │ │ │ │ │ ├── order_shipping_address_same_as_billing.php │ │ │ │ │ │ ├── order_state_hold.php │ │ │ │ │ │ ├── order_state_hold_rollback.php │ │ │ │ │ │ ├── order_status.php │ │ │ │ │ │ ├── order_status_assign_state_complete.php │ │ │ │ │ │ ├── order_status_assign_state_complete_rollback.php │ │ │ │ │ │ ├── order_status_history_for_search.php │ │ │ │ │ │ ├── order_with_1_qty_product.php │ │ │ │ │ │ ├── order_with_1_qty_product_rollback.php │ │ │ │ │ │ ├── order_with_bundle.php │ │ │ │ │ │ ├── order_with_bundle_and_invoiced.php │ │ │ │ │ │ ├── order_with_bundle_and_invoiced_rollback.php │ │ │ │ │ │ ├── order_with_bundle_rollback.php │ │ │ │ │ │ ├── order_with_customer.php │ │ │ │ │ │ ├── order_with_customer_and_multiple_order_items.php │ │ │ │ │ │ ├── order_with_customer_on_second_website.php │ │ │ │ │ │ ├── order_with_customer_on_second_website_rollback.php │ │ │ │ │ │ ├── order_with_customer_rollback.php │ │ │ │ │ │ ├── order_with_date_time_option_product.php │ │ │ │ │ │ ├── order_with_date_time_option_product_rollback.php │ │ │ │ │ │ ├── order_with_different_types_of_product.php │ │ │ │ │ │ ├── order_with_different_types_of_product_rollback.php │ │ │ │ │ │ ├── order_with_discount.php │ │ │ │ │ │ ├── order_with_discount_rollback.php │ │ │ │ │ │ ├── order_with_dummy_item_and_invoiced.php │ │ │ │ │ │ ├── order_with_free_shipping_by_coupon.php │ │ │ │ │ │ ├── order_with_free_shipping_by_coupon_rollback.php │ │ │ │ │ │ ├── order_with_grouped_product.php │ │ │ │ │ │ ├── order_with_grouped_product_rollback.php │ │ │ │ │ │ ├── order_with_invoice_and_custom_status.php │ │ │ │ │ │ ├── order_with_invoice_and_custom_status_rollback.php │ │ │ │ │ │ ├── order_with_invoice_shipment_creditmemo.php │ │ │ │ │ │ ├── order_with_invoice_shipment_creditmemo_on_second_website.php │ │ │ │ │ │ ├── order_with_invoice_shipment_creditmemo_on_second_website_rollback.php │ │ │ │ │ │ ├── order_with_invoice_shipment_creditmemo_rollback.php │ │ │ │ │ │ ├── order_with_js_date_option_product.php │ │ │ │ │ │ ├── order_with_js_date_option_product_rollback.php │ │ │ │ │ │ ├── order_with_multiple_items.php │ │ │ │ │ │ ├── order_with_product_out_of_stock.php │ │ │ │ │ │ ├── order_with_product_out_of_stock_rollback.php │ │ │ │ │ │ ├── order_with_shipping_and_invoice.php │ │ │ │ │ │ ├── order_with_shipping_and_invoice_rollback.php │ │ │ │ │ │ ├── order_with_simple_product.php │ │ │ │ │ │ ├── order_with_simple_product_rollback.php │ │ │ │ │ │ ├── order_with_tax.php │ │ │ │ │ │ ├── order_with_tax_rollback.php │ │ │ │ │ │ ├── order_with_two_configurable_variations.php │ │ │ │ │ │ ├── order_with_two_configurable_variations_rollback.php │ │ │ │ │ │ ├── order_with_two_order_items_with_simple_product.php │ │ │ │ │ │ ├── order_with_two_order_items_with_simple_product_rollback.php │ │ │ │ │ │ ├── order_with_two_simple_products.php │ │ │ │ │ │ ├── order_with_two_simple_products_qty_10.php │ │ │ │ │ │ ├── order_with_two_simple_products_qty_10_rollback.php │ │ │ │ │ │ ├── order_with_two_simple_products_rollback.php │ │ │ │ │ │ ├── order_with_zero_qty_product.php │ │ │ │ │ │ ├── order_with_zero_qty_product_rollback.php │ │ │ │ │ │ ├── orders_with_customer.php │ │ │ │ │ │ ├── orders_with_customer_rollback.php │ │ │ │ │ │ ├── payment_enc_cc.php │ │ │ │ │ │ ├── quote.php │ │ │ │ │ │ ├── quote_rollback.php │ │ │ │ │ │ ├── quote_with_bundle.php │ │ │ │ │ │ ├── quote_with_bundle_rollback.php │ │ │ │ │ │ ├── quote_with_custom_price.php │ │ │ │ │ │ ├── quote_with_custom_price_rollback.php │ │ │ │ │ │ ├── quote_with_customer.php │ │ │ │ │ │ ├── quote_with_customer_rollback.php │ │ │ │ │ │ ├── quote_with_multiple_products.php │ │ │ │ │ │ ├── quote_with_multiple_products_rollback.php │ │ │ │ │ │ ├── quote_with_new_customer.php │ │ │ │ │ │ ├── quote_with_purchase_order.php │ │ │ │ │ │ ├── quote_with_purchase_order_rollback.php │ │ │ │ │ │ ├── quote_with_two_products_and_customer.php │ │ │ │ │ │ ├── quotes.php │ │ │ │ │ │ ├── quotes_big_amount.php │ │ │ │ │ │ ├── quotes_big_amount_rollback.php │ │ │ │ │ │ ├── quotes_rollback.php │ │ │ │ │ │ ├── refunds_for_items.php │ │ │ │ │ │ ├── refunds_for_items_rollback.php │ │ │ │ │ │ ├── report_bestsellers.php │ │ │ │ │ │ ├── report_invoiced.php │ │ │ │ │ │ ├── report_refunded.php │ │ │ │ │ │ ├── report_shipping.php │ │ │ │ │ │ ├── shipment.php │ │ │ │ │ │ ├── shipment_comments_for_search.php │ │ │ │ │ │ ├── shipment_for_order_with_customer.php │ │ │ │ │ │ ├── shipment_for_order_with_customer_rollback.php │ │ │ │ │ │ ├── shipment_for_two_items.php │ │ │ │ │ │ ├── shipment_for_two_items_rollback.php │ │ │ │ │ │ ├── shipment_items_for_search.php │ │ │ │ │ │ ├── shipment_list.php │ │ │ │ │ │ ├── shipment_list_rollback.php │ │ │ │ │ │ ├── shipment_rollback.php │ │ │ │ │ │ ├── shipment_tracks_for_search.php │ │ │ │ │ │ ├── transactions.php │ │ │ │ │ │ ├── transactions_detailed.php │ │ │ │ │ │ ├── transactions_list.php │ │ │ │ │ │ ├── transactions_list_rollback.php │ │ │ │ │ │ ├── two_orders_for_one_of_two_customers.php │ │ │ │ │ │ ├── two_orders_for_two_diff_customers.php │ │ │ │ │ │ ├── two_orders_for_two_diff_customers_rollback.php │ │ │ │ │ │ └── two_orders_with_order_items.php │ │ │ │ │ └── etc │ │ │ │ │ │ └── extension_attributes.xml │ │ │ │ │ ├── SalesRule │ │ │ │ │ ├── Block │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── Promo │ │ │ │ │ │ │ └── Quote │ │ │ │ │ │ │ └── Edit │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ ├── Coupons │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ │ └── LabelsTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── Promo │ │ │ │ │ │ │ └── Quote │ │ │ │ │ │ │ ├── ExportCoupons │ │ │ │ │ │ │ ├── ExportCouponsCsvTest.php │ │ │ │ │ │ │ └── ExportCouponsXmlTest.php │ │ │ │ │ │ │ ├── NewActionHtmlTest.php │ │ │ │ │ │ │ └── NewConditionHtmlTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Coupon │ │ │ │ │ │ │ ├── CodeLimitManagerTest.php │ │ │ │ │ │ │ └── QuoteRepositoryTest.php │ │ │ │ │ │ ├── Observer │ │ │ │ │ │ │ └── AssignCouponDataAfterOrderCustomerAssignTest.php │ │ │ │ │ │ ├── Quote │ │ │ │ │ │ │ ├── Address │ │ │ │ │ │ │ │ └── Total │ │ │ │ │ │ │ │ │ └── ShippingTest.php │ │ │ │ │ │ │ └── DiscountTest.php │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ │ ├── Coupon │ │ │ │ │ │ │ │ └── UsageTest.php │ │ │ │ │ │ │ ├── Report │ │ │ │ │ │ │ │ └── Rule │ │ │ │ │ │ │ │ │ └── CreatedatTest.php │ │ │ │ │ │ │ ├── Rule │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ └── RuleTest.php │ │ │ │ │ │ └── Rule │ │ │ │ │ │ │ ├── Action │ │ │ │ │ │ │ └── Discount │ │ │ │ │ │ │ │ └── CartFixedTest.php │ │ │ │ │ │ │ └── Condition │ │ │ │ │ │ │ ├── AddressTest.php │ │ │ │ │ │ │ ├── ConditionHelper.php │ │ │ │ │ │ │ └── ProductTest.php │ │ │ │ │ ├── Plugin │ │ │ │ │ │ └── CouponUsagesTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── buy_3_get_1_free.php │ │ │ │ │ │ ├── buy_3_get_1_free_rollback.php │ │ │ │ │ │ ├── cart_rule_100_percent_off.php │ │ │ │ │ │ ├── cart_rule_100_percent_off_rollback.php │ │ │ │ │ │ ├── cart_rule_10_percent_off.php │ │ │ │ │ │ ├── cart_rule_10_percent_off_qty_more_than_2_items.php │ │ │ │ │ │ ├── cart_rule_10_percent_off_qty_more_than_2_items_rollback.php │ │ │ │ │ │ ├── cart_rule_10_percent_off_with_discount_on_shipping.php │ │ │ │ │ │ ├── cart_rule_10_percent_off_with_discount_on_shipping_rollback.php │ │ │ │ │ │ ├── cart_rule_40_percent_off.php │ │ │ │ │ │ ├── cart_rule_40_percent_off_rollback.php │ │ │ │ │ │ ├── cart_rule_50_percent_off.php │ │ │ │ │ │ ├── cart_rule_50_percent_off_no_condition.php │ │ │ │ │ │ ├── cart_rule_50_percent_off_no_condition_rollback.php │ │ │ │ │ │ ├── cart_rule_50_percent_off_rollback.php │ │ │ │ │ │ ├── cart_rule_free_shipping.php │ │ │ │ │ │ ├── cart_rule_free_shipping_by_cart.php │ │ │ │ │ │ ├── cart_rule_free_shipping_by_category.php │ │ │ │ │ │ ├── cart_rule_free_shipping_by_category_rollback.php │ │ │ │ │ │ ├── cart_rule_free_shipping_rollback.php │ │ │ │ │ │ ├── cart_rule_product_in_category.php │ │ │ │ │ │ ├── cart_rule_product_in_category_rollback.php │ │ │ │ │ │ ├── cart_rule_product_sku.php │ │ │ │ │ │ ├── cart_rule_product_sku_rollback.php │ │ │ │ │ │ ├── cart_rule_with_coupon_list.php │ │ │ │ │ │ ├── cart_rule_with_coupon_list_rollback.php │ │ │ │ │ │ ├── coupon_cart_fixed_discount.php │ │ │ │ │ │ ├── coupon_cart_fixed_discount_rollback.php │ │ │ │ │ │ ├── coupon_cart_fixed_subtotal_with_discount.php │ │ │ │ │ │ ├── coupon_cart_fixed_subtotal_with_discount_rollback.php │ │ │ │ │ │ ├── coupon_code_with_wildcard.php │ │ │ │ │ │ ├── coupon_code_with_wildcard_rollback.php │ │ │ │ │ │ ├── coupons.php │ │ │ │ │ │ ├── coupons_advanced.php │ │ │ │ │ │ ├── coupons_limited.php │ │ │ │ │ │ ├── coupons_limited_order.php │ │ │ │ │ │ ├── coupons_limited_order_rollback.php │ │ │ │ │ │ ├── coupons_limited_rollback.php │ │ │ │ │ │ ├── multi_websites_rules.php │ │ │ │ │ │ ├── multi_websites_rules_rollback.php │ │ │ │ │ │ ├── order_with_coupon.php │ │ │ │ │ │ ├── report_coupons.php │ │ │ │ │ │ ├── rule_custom_product_attribute.php │ │ │ │ │ │ ├── rule_free_shipping_by_product_weight.php │ │ │ │ │ │ ├── rule_specific_date.php │ │ │ │ │ │ ├── rules.php │ │ │ │ │ │ ├── rules_advanced.php │ │ │ │ │ │ ├── rules_autogeneration.php │ │ │ │ │ │ ├── rules_autogeneration_rollback.php │ │ │ │ │ │ ├── rules_categories.php │ │ │ │ │ │ ├── rules_categories_rollback.php │ │ │ │ │ │ ├── rules_category.php │ │ │ │ │ │ ├── rules_category_rollback.php │ │ │ │ │ │ ├── rules_group_all_categories.php │ │ │ │ │ │ ├── rules_group_all_categories_price_attr_set.php │ │ │ │ │ │ ├── rules_group_any_categories.php │ │ │ │ │ │ ├── rules_group_any_categories_price_address.php │ │ │ │ │ │ ├── rules_group_any_categories_price_attr_set.php │ │ │ │ │ │ ├── rules_group_any_categories_price_attr_set_any.php │ │ │ │ │ │ ├── rules_group_any_categories_rollback.php │ │ │ │ │ │ ├── rules_group_categories_price_sku_attr_set_any.php │ │ │ │ │ │ ├── rules_group_not_categories_sku_attr.php │ │ │ │ │ │ ├── rules_parent_category.php │ │ │ │ │ │ ├── rules_parent_category_rollback.php │ │ │ │ │ │ ├── rules_payment_method.php │ │ │ │ │ │ ├── rules_rollback.php │ │ │ │ │ │ ├── rules_sku_exclude.php │ │ │ │ │ │ └── rules_sku_exclude_rollback.php │ │ │ │ │ ├── SampleData │ │ │ │ │ ├── Model │ │ │ │ │ │ └── DependencyTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ └── Modules │ │ │ │ │ │ ├── FirstModule │ │ │ │ │ │ └── composer.json │ │ │ │ │ │ ├── SecondModule │ │ │ │ │ │ └── composer.json │ │ │ │ │ │ └── ThirdModule │ │ │ │ │ │ └── composer.json │ │ │ │ │ ├── Search │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── Synonyms │ │ │ │ │ │ │ └── DeleteTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ │ └── System │ │ │ │ │ │ │ │ └── Config │ │ │ │ │ │ │ │ └── Source │ │ │ │ │ │ │ │ └── EngineTest.php │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ │ └── SynonymGroupTest.php │ │ │ │ │ │ ├── SearchEngine │ │ │ │ │ │ │ └── ConfigTest.php │ │ │ │ │ │ ├── SynonymAnalyzerTest.php │ │ │ │ │ │ ├── SynonymGroupRepositoryTest.php │ │ │ │ │ │ └── SynonymReaderTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── search_engine.xml │ │ │ │ │ │ ├── synonym_group.php │ │ │ │ │ │ ├── synonym_group_rollback.php │ │ │ │ │ │ ├── synonym_reader.php │ │ │ │ │ │ └── synonym_reader_rollback.php │ │ │ │ │ ├── Security │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── Session │ │ │ │ │ │ │ └── LogoutAllTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── AdminSessionsManagerTest.php │ │ │ │ │ │ ├── Plugin │ │ │ │ │ │ │ ├── AccountManagementTest.php │ │ │ │ │ │ │ └── AuthSessionTest.php │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ │ ├── AdminSessionInfo │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ ├── AdminSessionInfoTest.php │ │ │ │ │ │ │ ├── PasswordResetRequestEvent │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ ├── PasswordResetRequestEventTest.php │ │ │ │ │ │ │ └── UserExpiration │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ ├── SecurityManagerTest.php │ │ │ │ │ │ └── UserExpirationManagerTest.php │ │ │ │ │ ├── Observer │ │ │ │ │ │ ├── AdminUserAuthenticateBeforeTest.php │ │ │ │ │ │ └── AfterAdminUserSaveTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── adminsession.php │ │ │ │ │ │ ├── customer_reset_password.php │ │ │ │ │ │ ├── customer_reset_password_rollback.php │ │ │ │ │ │ ├── expired_users.php │ │ │ │ │ │ ├── expired_users_rollback.php │ │ │ │ │ │ └── password_reset_request_events.php │ │ │ │ │ ├── SendFriend │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── ProductViewTest.php │ │ │ │ │ │ └── SendTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ └── CustomerSendmailTest.php │ │ │ │ │ │ ├── SendTest.php │ │ │ │ │ │ └── SendmailTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── sendfriend_configuration.php │ │ │ │ │ │ └── sendfriend_configuration_rollback.php │ │ │ │ │ ├── Model │ │ │ │ │ │ └── SendFriendTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── sendfriend_log_record_half_hour_before.php │ │ │ │ │ │ └── sendfriend_log_record_half_hour_before_rollback.php │ │ │ │ │ ├── Setup │ │ │ │ │ ├── Console │ │ │ │ │ │ └── Command │ │ │ │ │ │ │ ├── DependenciesShowFrameworkCommandTest.php │ │ │ │ │ │ │ ├── DependenciesShowModulesCircularCommandTest.php │ │ │ │ │ │ │ ├── DependenciesShowModulesCommandTest.php │ │ │ │ │ │ │ ├── DeployStaticContentCommandTest.php │ │ │ │ │ │ │ ├── GenerateFixturesCommandTest.php │ │ │ │ │ │ │ ├── I18nCollectPhrasesCommandTest.php │ │ │ │ │ │ │ ├── I18nPackCommandTest.php │ │ │ │ │ │ │ ├── PriceIndexerDimensionsModeSetCommandTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── config │ │ │ │ │ │ │ └── dump_config.php │ │ │ │ │ │ │ ├── edition │ │ │ │ │ │ │ ├── expectedPhrases.csv │ │ │ │ │ │ │ ├── i18n.csv │ │ │ │ │ │ │ ├── min_profile.xml │ │ │ │ │ │ │ ├── output │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ │ ├── phrases │ │ │ │ │ │ │ ├── TestPhrases.php │ │ │ │ │ │ │ └── test_di.xml │ │ │ │ │ │ │ └── root │ │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ └── code │ │ │ │ │ │ │ │ └── Magento │ │ │ │ │ │ │ │ ├── A │ │ │ │ │ │ │ │ ├── Model │ │ │ │ │ │ │ │ │ └── Foo.php │ │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ │ ├── etc │ │ │ │ │ │ │ │ │ └── module.xml │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ │ ├── B │ │ │ │ │ │ │ │ ├── Model │ │ │ │ │ │ │ │ │ └── Foo.php │ │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ │ ├── etc │ │ │ │ │ │ │ │ │ └── module.xml │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ │ ├── C │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ │ └── D │ │ │ │ │ │ │ │ └── registration.php │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ └── internal │ │ │ │ │ │ │ └── Magento │ │ │ │ │ │ │ └── Framework │ │ │ │ │ │ │ └── Test │ │ │ │ │ │ │ └── Unit │ │ │ │ │ │ │ └── View │ │ │ │ │ │ │ └── Element │ │ │ │ │ │ │ └── UiComponentFactoryTest.php │ │ │ │ │ ├── Declaration │ │ │ │ │ │ ├── WhitelistDeclarationTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── ignore_whitelisting │ │ │ │ │ │ │ └── ce.json │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── FixtureModelTest.php │ │ │ │ │ │ ├── FixturesAsserts │ │ │ │ │ │ │ ├── BundleProductsAssert.php │ │ │ │ │ │ │ ├── ConfigurableProductsAssert.php │ │ │ │ │ │ │ ├── ImagesAssert.php │ │ │ │ │ │ │ ├── ProductAssert.php │ │ │ │ │ │ │ └── SimpleProductsAssert.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── attributeSets.xml │ │ │ │ │ │ │ ├── small.xml │ │ │ │ │ │ │ └── tax_rates.csv │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── ConfigOptionsListCollectorTest.php │ │ │ │ │ │ ├── FixtureGenerator │ │ │ │ │ │ │ └── ProductGeneratorTest.php │ │ │ │ │ │ ├── ObjectManagerProviderTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── testSkeleton │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ └── composer.lock │ │ │ │ │ └── Module │ │ │ │ │ │ ├── DataSetupTest.php │ │ │ │ │ │ ├── Dependency │ │ │ │ │ │ ├── CircularTest.php │ │ │ │ │ │ ├── Parser │ │ │ │ │ │ │ ├── Composer │ │ │ │ │ │ │ │ └── JsonTest.php │ │ │ │ │ │ │ └── Config │ │ │ │ │ │ │ │ └── XmlTest.php │ │ │ │ │ │ ├── Report │ │ │ │ │ │ │ ├── CircularTest.php │ │ │ │ │ │ │ ├── DependencyTest.php │ │ │ │ │ │ │ └── FrameworkTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── code │ │ │ │ │ │ │ └── Magento │ │ │ │ │ │ │ │ └── FirstModule │ │ │ │ │ │ │ │ ├── Helper │ │ │ │ │ │ │ │ └── Helper.php │ │ │ │ │ │ │ │ ├── Model │ │ │ │ │ │ │ │ ├── Model.php │ │ │ │ │ │ │ │ └── WithoutDependencies.php │ │ │ │ │ │ │ │ ├── etc │ │ │ │ │ │ │ │ └── module.xml │ │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ │ └── frontend │ │ │ │ │ │ │ │ └── template.phtml │ │ │ │ │ │ │ ├── composer1.json │ │ │ │ │ │ │ ├── composer2.json │ │ │ │ │ │ │ ├── composer3.json │ │ │ │ │ │ │ ├── composer4.json │ │ │ │ │ │ │ ├── composer5.json │ │ │ │ │ │ │ ├── expected │ │ │ │ │ │ │ ├── circular-dependencies.csv │ │ │ │ │ │ │ ├── dependencies.csv │ │ │ │ │ │ │ ├── framework-dependencies.csv │ │ │ │ │ │ │ ├── without-circular-dependencies.csv │ │ │ │ │ │ │ ├── without-dependencies.csv │ │ │ │ │ │ │ └── without-framework-dependencies.csv │ │ │ │ │ │ │ ├── module1.xml │ │ │ │ │ │ │ └── module2.xml │ │ │ │ │ │ └── I18n │ │ │ │ │ │ ├── Dictionary │ │ │ │ │ │ ├── GeneratorTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── expected │ │ │ │ │ │ │ ├── with_context.csv │ │ │ │ │ │ │ └── without_context.csv │ │ │ │ │ │ │ └── source │ │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ ├── code │ │ │ │ │ │ │ │ └── Magento │ │ │ │ │ │ │ │ │ ├── FirstModule │ │ │ │ │ │ │ │ │ ├── Helper │ │ │ │ │ │ │ │ │ │ └── Helper.php │ │ │ │ │ │ │ │ │ ├── Model │ │ │ │ │ │ │ │ │ │ └── Model.php │ │ │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ │ │ │ └── frontend │ │ │ │ │ │ │ │ │ │ ├── default.xml │ │ │ │ │ │ │ │ │ │ ├── file.js │ │ │ │ │ │ │ │ │ │ └── template.phtml │ │ │ │ │ │ │ │ │ └── SecondModule │ │ │ │ │ │ │ │ │ └── Model │ │ │ │ │ │ │ │ │ └── Model.php │ │ │ │ │ │ │ └── design │ │ │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ │ │ └── default │ │ │ │ │ │ │ │ └── backend │ │ │ │ │ │ │ │ ├── default.xml │ │ │ │ │ │ │ │ └── template.phtml │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ ├── mage │ │ │ │ │ │ │ │ └── file.js │ │ │ │ │ │ │ │ └── varien │ │ │ │ │ │ │ │ └── file.js │ │ │ │ │ │ │ └── not_magento_dir │ │ │ │ │ │ │ ├── Model.php │ │ │ │ │ │ │ ├── file.js │ │ │ │ │ │ │ └── template.phtml │ │ │ │ │ │ ├── Pack │ │ │ │ │ │ ├── GeneratorTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── expected │ │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ │ ├── code │ │ │ │ │ │ │ │ │ └── Magento │ │ │ │ │ │ │ │ │ │ ├── FirstModule │ │ │ │ │ │ │ │ │ │ └── i18n │ │ │ │ │ │ │ │ │ │ │ └── de_DE.csv │ │ │ │ │ │ │ │ │ │ └── SecondModule │ │ │ │ │ │ │ │ │ │ └── i18n │ │ │ │ │ │ │ │ │ │ └── de_DE.csv │ │ │ │ │ │ │ │ └── design │ │ │ │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ │ │ │ └── default │ │ │ │ │ │ │ │ │ └── i18n │ │ │ │ │ │ │ │ │ └── de_DE.csv │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ └── i18n │ │ │ │ │ │ │ │ └── de_DE.csv │ │ │ │ │ │ │ └── source.csv │ │ │ │ │ │ └── Parser │ │ │ │ │ │ └── Adapter │ │ │ │ │ │ ├── JsTest.php │ │ │ │ │ │ ├── Php │ │ │ │ │ │ └── Tokenizer │ │ │ │ │ │ │ ├── PhraseCollectorTest.php │ │ │ │ │ │ │ ├── Translate │ │ │ │ │ │ │ └── MethodCollectorTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── methodsCode.php.txt │ │ │ │ │ │ │ └── objectsCode.php.txt │ │ │ │ │ │ ├── XmlTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ ├── jsPhrasesForTest.js │ │ │ │ │ │ └── xmlPhrasesForTest.xml │ │ │ │ │ ├── Shipping │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ │ └── Order │ │ │ │ │ │ │ │ └── AddToPackageTest.php │ │ │ │ │ │ └── ItemsTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── Order │ │ │ │ │ │ │ └── Shipment │ │ │ │ │ │ │ ├── AbstractShipmentControllerTest.php │ │ │ │ │ │ │ ├── AddCommentTest.php │ │ │ │ │ │ │ ├── Save │ │ │ │ │ │ │ └── CreateShipmentForOrderTest.php │ │ │ │ │ │ │ └── SaveTest.php │ │ │ │ │ ├── Helper │ │ │ │ │ │ └── DataTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── CollectRatesAbstract.php │ │ │ │ │ │ └── ShippingTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── shipping_with_carrier_data.php │ │ │ │ │ │ ├── shipping_with_carrier_data_rollback.php │ │ │ │ │ │ ├── track.php │ │ │ │ │ │ └── track_rollback.php │ │ │ │ │ ├── Sitemap │ │ │ │ │ ├── Block │ │ │ │ │ │ └── RobotsTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── ItemProvider │ │ │ │ │ │ │ ├── CategoryConfigReaderTest.php │ │ │ │ │ │ │ ├── CmsPageConfigReaderTest.php │ │ │ │ │ │ │ └── ProductConfigReaderTest.php │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ │ ├── Catalog │ │ │ │ │ │ │ │ └── ProductTest.php │ │ │ │ │ │ │ └── Cms │ │ │ │ │ │ │ │ └── PageTest.php │ │ │ │ │ │ ├── SitemapConfigReaderTest.php │ │ │ │ │ │ └── SitemapTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── magento_image_sitemap.png │ │ │ │ │ │ ├── second_image.png │ │ │ │ │ │ ├── sitemap_products.php │ │ │ │ │ │ └── sitemap_products_rollback.php │ │ │ │ │ ├── Store │ │ │ │ │ ├── App │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ └── Source │ │ │ │ │ │ │ │ └── InitialConfigSourceTest.php │ │ │ │ │ │ ├── FrontController │ │ │ │ │ │ │ └── Plugin │ │ │ │ │ │ │ │ └── RequestPreprocessorTest.php │ │ │ │ │ │ └── Request │ │ │ │ │ │ │ └── PathInfoProcessorTest.php │ │ │ │ │ ├── Block │ │ │ │ │ │ └── SwitcherTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Store │ │ │ │ │ │ │ ├── RedirectTest.php │ │ │ │ │ │ │ └── SwitchActionTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── App │ │ │ │ │ │ │ └── EmulationTest.php │ │ │ │ │ │ ├── DataSource.php │ │ │ │ │ │ ├── GroupTest.php │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ │ ├── Store │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ ├── StoreTest.php │ │ │ │ │ │ │ └── WebsiteTest.php │ │ │ │ │ │ ├── StoreCookieManagerTest.php │ │ │ │ │ │ ├── StoreManagerTest.php │ │ │ │ │ │ ├── StoreResolverTest.php │ │ │ │ │ │ ├── StoreSwitcherTest.php │ │ │ │ │ │ ├── StoreTest.php │ │ │ │ │ │ └── WebsiteTest.php │ │ │ │ │ ├── Ui │ │ │ │ │ │ └── Component │ │ │ │ │ │ │ └── Listing │ │ │ │ │ │ │ └── Column │ │ │ │ │ │ │ └── Store │ │ │ │ │ │ │ └── OptionsTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── core_fixturestore.php │ │ │ │ │ │ ├── core_fixturestore_rollback.php │ │ │ │ │ │ ├── core_second_third_fixturestore.php │ │ │ │ │ │ ├── core_second_third_fixturestore_rollback.php │ │ │ │ │ │ ├── dump_config.php │ │ │ │ │ │ ├── fixture_store_with_catalogsearch_index.php │ │ │ │ │ │ ├── fixture_store_with_catalogsearch_index_rollback.php │ │ │ │ │ │ ├── inactive_store.php │ │ │ │ │ │ ├── inactive_store_rollback.php │ │ │ │ │ │ ├── multiple_websites_with_store_groups_stores.php │ │ │ │ │ │ ├── multiple_websites_with_store_groups_stores_rollback.php │ │ │ │ │ │ ├── scope.config.fixture.php │ │ │ │ │ │ ├── second_store.php │ │ │ │ │ │ ├── second_store_group_with_second_website.php │ │ │ │ │ │ ├── second_store_group_with_second_website_rollback.php │ │ │ │ │ │ ├── second_store_rollback.php │ │ │ │ │ │ ├── second_store_with_second_currency.php │ │ │ │ │ │ ├── second_store_with_second_currency_rollback.php │ │ │ │ │ │ ├── second_store_with_second_identity.php │ │ │ │ │ │ ├── second_store_with_second_identity_rollback.php │ │ │ │ │ │ ├── second_website_with_base_second_currency.php │ │ │ │ │ │ ├── second_website_with_base_second_currency_rollback.php │ │ │ │ │ │ ├── second_website_with_four_stores_divided_in_groups.php │ │ │ │ │ │ ├── second_website_with_four_stores_divided_in_groups_rollback.php │ │ │ │ │ │ ├── second_website_with_second_currency.php │ │ │ │ │ │ ├── second_website_with_second_currency_rollback.php │ │ │ │ │ │ ├── second_website_with_store_group_and_store.php │ │ │ │ │ │ ├── second_website_with_store_group_and_store_rollback.php │ │ │ │ │ │ ├── second_website_with_two_stores.php │ │ │ │ │ │ ├── second_website_with_two_stores_rollback.php │ │ │ │ │ │ ├── store.php │ │ │ │ │ │ ├── store_rollback.php │ │ │ │ │ │ ├── store_with_long_name.php │ │ │ │ │ │ ├── store_with_long_name_rollback.php │ │ │ │ │ │ ├── store_with_second_root_category.php │ │ │ │ │ │ ├── store_with_second_root_category_rollback.php │ │ │ │ │ │ ├── website.php │ │ │ │ │ │ ├── website_rollback.php │ │ │ │ │ │ ├── websites_different_countries.php │ │ │ │ │ │ └── websites_different_countries_rollback.php │ │ │ │ │ ├── SwaggerWebapi │ │ │ │ │ └── Block │ │ │ │ │ │ └── Swagger │ │ │ │ │ │ └── IndexTest.php │ │ │ │ │ ├── Swatches │ │ │ │ │ ├── Block │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ ├── ListProductTest.php │ │ │ │ │ │ │ ├── Renderer │ │ │ │ │ │ │ ├── Configurable │ │ │ │ │ │ │ │ ├── Listing │ │ │ │ │ │ │ │ │ └── CategoryPageViewTest.php │ │ │ │ │ │ │ │ ├── PriceTest.php │ │ │ │ │ │ │ │ └── ProductPageViewTest.php │ │ │ │ │ │ │ └── ConfigurableTest.php │ │ │ │ │ │ │ └── View │ │ │ │ │ │ │ └── Attribute │ │ │ │ │ │ │ ├── TextSwatchAttributeTest.php │ │ │ │ │ │ │ └── VisualSwatchAttributeTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ ├── Iframe │ │ │ │ │ │ │ └── ShowTest.php │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ │ ├── Delete │ │ │ │ │ │ │ │ └── SwatchesAttributesControllerTest.php │ │ │ │ │ │ │ ├── Save │ │ │ │ │ │ │ │ └── InputType │ │ │ │ │ │ │ │ │ ├── TextSwatchTest.php │ │ │ │ │ │ │ │ │ └── VisualSwatchTest.php │ │ │ │ │ │ │ └── Update │ │ │ │ │ │ │ │ ├── AbstractUpdateSwatchAttributeTest.php │ │ │ │ │ │ │ │ └── InputType │ │ │ │ │ │ │ │ ├── TextSwatchTest.php │ │ │ │ │ │ │ │ └── VisualSwatchTest.php │ │ │ │ │ │ │ └── AttributeTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── AttributeCreateTest.php │ │ │ │ │ │ ├── AttributeTextSwatchTest.php │ │ │ │ │ │ ├── AttributeVisualSwatchTest.php │ │ │ │ │ │ ├── SwatchAttributeCodesTest.php │ │ │ │ │ │ └── SwatchAttributeOptionAddTest.php │ │ │ │ │ ├── Observer │ │ │ │ │ │ └── AddSwatchAttributeTypeObserverTest.php │ │ │ │ │ ├── Ui │ │ │ │ │ │ └── DataProvider │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ └── Form │ │ │ │ │ │ │ └── Modifier │ │ │ │ │ │ │ └── Eav │ │ │ │ │ │ │ ├── TextSwatchAttributeTest.php │ │ │ │ │ │ │ └── VisualSwatchAttributeTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── configurable_product_text_swatch_attribute.php │ │ │ │ │ │ ├── configurable_product_text_swatch_attribute_rollback.php │ │ │ │ │ │ ├── configurable_product_two_attributes.php │ │ │ │ │ │ ├── configurable_product_two_attributes_rollback.php │ │ │ │ │ │ ├── configurable_product_visual_swatch_attribute.php │ │ │ │ │ │ ├── configurable_product_visual_swatch_attribute_rollback.php │ │ │ │ │ │ ├── configurable_product_with_visual_swatch_attribute.php │ │ │ │ │ │ ├── configurable_product_with_visual_swatch_attribute_rollback.php │ │ │ │ │ │ ├── product_swatch_attribute.php │ │ │ │ │ │ ├── product_swatch_attribute_rollback.php │ │ │ │ │ │ ├── product_text_swatch_attribute.php │ │ │ │ │ │ ├── product_text_swatch_attribute_rollback.php │ │ │ │ │ │ ├── product_visual_swatch_attribute.php │ │ │ │ │ │ ├── product_visual_swatch_attribute_rollback.php │ │ │ │ │ │ ├── products_with_layered_navigation_swatch.php │ │ │ │ │ │ ├── products_with_layered_navigation_swatch_rollback.php │ │ │ │ │ │ ├── swatch_attribute.php │ │ │ │ │ │ ├── swatch_attribute_rollback.php │ │ │ │ │ │ ├── text_swatch_attribute.php │ │ │ │ │ │ ├── text_swatch_attribute_rollback.php │ │ │ │ │ │ ├── visual_swatch_attribute_with_different_options_type.php │ │ │ │ │ │ ├── visual_swatch_attribute_with_different_options_type_rollback.php │ │ │ │ │ │ ├── visual_swatch_attribute_with_enabled_product_image_for_swatch.php │ │ │ │ │ │ └── visual_swatch_attribute_with_enabled_product_image_for_swatch_rollback.php │ │ │ │ │ ├── SwatchesLayeredNavigation │ │ │ │ │ └── Block │ │ │ │ │ │ └── Navigation │ │ │ │ │ │ ├── Category │ │ │ │ │ │ ├── SwatchTextFilterTest.php │ │ │ │ │ │ └── SwatchVisualFilterTest.php │ │ │ │ │ │ └── Search │ │ │ │ │ │ ├── SwatchTextFilterTest.php │ │ │ │ │ │ └── SwatchVisualFilterTest.php │ │ │ │ │ ├── Tax │ │ │ │ │ ├── Block │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── Rate │ │ │ │ │ │ │ └── TitleTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ ├── RateTest.php │ │ │ │ │ │ │ ├── RuleTest.php │ │ │ │ │ │ │ └── TaxTest.php │ │ │ │ │ ├── Helper │ │ │ │ │ │ └── DataTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Calculation │ │ │ │ │ │ │ └── RateRepositoryTest.php │ │ │ │ │ │ ├── CalculationTest.php │ │ │ │ │ │ ├── ClassTest.php │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ ├── Rate │ │ │ │ │ │ │ ├── ProviderTest.php │ │ │ │ │ │ │ └── SourceTest.php │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ │ ├── Calculation │ │ │ │ │ │ │ │ └── Rule │ │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ ├── CalculationTest.php │ │ │ │ │ │ │ └── Report │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ ├── Sales │ │ │ │ │ │ │ └── Total │ │ │ │ │ │ │ │ └── Quote │ │ │ │ │ │ │ │ ├── SetupUtil.php │ │ │ │ │ │ │ │ ├── SubtotalTest.php │ │ │ │ │ │ │ │ └── TaxTest.php │ │ │ │ │ │ ├── TaxCalculationTest.php │ │ │ │ │ │ ├── TaxClass │ │ │ │ │ │ │ ├── ManagementTest.php │ │ │ │ │ │ │ ├── RepositoryTest.php │ │ │ │ │ │ │ ├── Source │ │ │ │ │ │ │ │ ├── CustomerTest.php │ │ │ │ │ │ │ │ └── ProductTest.php │ │ │ │ │ │ │ └── Type │ │ │ │ │ │ │ │ └── CustomerTest.php │ │ │ │ │ │ ├── TaxRateCollectionTest.php │ │ │ │ │ │ ├── TaxRateManagementTest.php │ │ │ │ │ │ ├── TaxRuleCollectionTest.php │ │ │ │ │ │ ├── TaxRuleFixtureFactory.php │ │ │ │ │ │ └── TaxRuleRepositoryTest.php │ │ │ │ │ ├── Pricing │ │ │ │ │ │ └── AdjustmentTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── full_discount_with_tax.php │ │ │ │ │ │ ├── order_with_tax.php │ │ │ │ │ │ ├── report_tax.php │ │ │ │ │ │ ├── scenarios │ │ │ │ │ │ ├── excluding_tax_apply_tax_after_discount.php │ │ │ │ │ │ ├── excluding_tax_apply_tax_after_discount_discount_tax.php │ │ │ │ │ │ ├── excluding_tax_apply_tax_before_discount.php │ │ │ │ │ │ ├── excluding_tax_multi_item_row.php │ │ │ │ │ │ ├── excluding_tax_multi_item_total.php │ │ │ │ │ │ ├── excluding_tax_multi_item_unit.php │ │ │ │ │ │ ├── excluding_tax_row.php │ │ │ │ │ │ ├── excluding_tax_total.php │ │ │ │ │ │ ├── excluding_tax_unit.php │ │ │ │ │ │ ├── including_tax_apply_tax_after_discount.php │ │ │ │ │ │ ├── including_tax_cross_border_trade_disabled.php │ │ │ │ │ │ ├── including_tax_cross_border_trade_enabled.php │ │ │ │ │ │ ├── including_tax_row.php │ │ │ │ │ │ ├── including_tax_total.php │ │ │ │ │ │ ├── including_tax_unit.php │ │ │ │ │ │ ├── including_tax_with_custom_price.php │ │ │ │ │ │ ├── multi_tax_rule_total_calculate_subtotal_no.php │ │ │ │ │ │ ├── multi_tax_rule_total_calculate_subtotal_yes.php │ │ │ │ │ │ ├── multi_tax_rule_two_row_calculate_subtotal_yes_row.php │ │ │ │ │ │ ├── multi_tax_rule_two_row_calculate_subtotal_yes_total.php │ │ │ │ │ │ ├── multi_tax_rule_unit_calculate_subtotal_no.php │ │ │ │ │ │ └── multi_tax_rule_unit_calculate_subtotal_yes.php │ │ │ │ │ │ ├── tax_calculation_data_aggregated.php │ │ │ │ │ │ ├── tax_classes.php │ │ │ │ │ │ ├── tax_classes_de.php │ │ │ │ │ │ ├── tax_classes_de_rollback.php │ │ │ │ │ │ ├── tax_classes_rollback.php │ │ │ │ │ │ ├── tax_rule_region_1_al.php │ │ │ │ │ │ └── tax_rule_region_1_al_rollback.php │ │ │ │ │ ├── TaxImportExport │ │ │ │ │ ├── Block │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── Rate │ │ │ │ │ │ │ └── ImportExportTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── Rate │ │ │ │ │ │ │ ├── ExportPostTest.php │ │ │ │ │ │ │ ├── ImportExportTest.php │ │ │ │ │ │ │ └── ImportPostTest.php │ │ │ │ │ └── Model │ │ │ │ │ │ └── Rate │ │ │ │ │ │ ├── CsvImportHandlerTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ ├── correct_rates_import_file.csv │ │ │ │ │ │ └── rates_import_file_incorrect_country.csv │ │ │ │ │ ├── Test │ │ │ │ │ └── Integrity │ │ │ │ │ │ ├── DatabaseTest.php │ │ │ │ │ │ ├── LayoutTest.php │ │ │ │ │ │ ├── Magento │ │ │ │ │ │ ├── Payment │ │ │ │ │ │ │ └── MethodsTest.php │ │ │ │ │ │ └── Widget │ │ │ │ │ │ │ ├── SkinFilesTest.php │ │ │ │ │ │ │ └── TemplateFilesTest.php │ │ │ │ │ │ ├── Modular │ │ │ │ │ │ ├── AbstractMergedConfigTest.php │ │ │ │ │ │ ├── AclConfigFilesTest.php │ │ │ │ │ │ ├── BlockInstantiationTest.php │ │ │ │ │ │ ├── CacheFilesTest.php │ │ │ │ │ │ ├── CarrierConfigFilesTest.php │ │ │ │ │ │ ├── CrontabConfigFilesTest.php │ │ │ │ │ │ ├── DiConfigFilesTest.php │ │ │ │ │ │ ├── EavAttributesConfigFilesTest.php │ │ │ │ │ │ ├── EventConfigFilesTest.php │ │ │ │ │ │ ├── ExportConfigFilesTest.php │ │ │ │ │ │ ├── FieldsetConfigFilesTest.php │ │ │ │ │ │ ├── ImportConfigFilesTest.php │ │ │ │ │ │ ├── IndexerConfigFilesTest.php │ │ │ │ │ │ ├── LayoutFilesTest.php │ │ │ │ │ │ ├── Magento │ │ │ │ │ │ │ ├── Catalog │ │ │ │ │ │ │ │ └── AttributeConfigFilesTest.php │ │ │ │ │ │ │ ├── Customer │ │ │ │ │ │ │ │ └── AddressFormatsFilesTest.php │ │ │ │ │ │ │ ├── Email │ │ │ │ │ │ │ │ └── EmailTemplateConfigFilesTest.php │ │ │ │ │ │ │ └── Sales │ │ │ │ │ │ │ │ └── PdfConfigFilesTest.php │ │ │ │ │ │ ├── MenuConfigFilesTest.php │ │ │ │ │ │ ├── MviewConfigFilesTest.php │ │ │ │ │ │ ├── PaymentConfigFilesTest.php │ │ │ │ │ │ ├── ProductOptionsConfigFilesTest.php │ │ │ │ │ │ ├── ProductTypesConfigFilesTest.php │ │ │ │ │ │ ├── ResourcesConfigFilesTest.php │ │ │ │ │ │ ├── RouteConfigFilesTest.php │ │ │ │ │ │ ├── SalesConfigFilesTest.php │ │ │ │ │ │ ├── SystemConfigFilesTest.php │ │ │ │ │ │ ├── TemplateFilesTest.php │ │ │ │ │ │ ├── ThemeConfigFilesTest.php │ │ │ │ │ │ ├── ViewConfigFilesTest.php │ │ │ │ │ │ ├── WidgetConfigFilesTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── skip_blocks_ce.php │ │ │ │ │ │ │ └── skip_template_blocks_ce.php │ │ │ │ │ │ ├── StaticFilesTest.php │ │ │ │ │ │ ├── Theme │ │ │ │ │ │ ├── TemplateFilesTest.php │ │ │ │ │ │ └── XmlFilesTest.php │ │ │ │ │ │ └── ViewFileReferenceTest.php │ │ │ │ │ ├── TestFixture │ │ │ │ │ └── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ └── Noroute.php │ │ │ │ │ ├── TestModuleOverrideConfig │ │ │ │ │ ├── AbstractOverridesTest.php │ │ │ │ │ ├── Inheritance │ │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ │ ├── FixturesAbstractClass.php │ │ │ │ │ │ │ ├── FixturesInterface.php │ │ │ │ │ │ │ └── FixturesTest.php │ │ │ │ │ │ └── Skip │ │ │ │ │ │ │ ├── SkipAbstractClass.php │ │ │ │ │ │ │ ├── SkipInterface.php │ │ │ │ │ │ │ └── SkipTest.php │ │ │ │ │ ├── MagentoAdminConfigFixture │ │ │ │ │ │ ├── AddFixtureTest.php │ │ │ │ │ │ ├── RemoveFixtureTest.php │ │ │ │ │ │ └── ReplaceFixtureTest.php │ │ │ │ │ ├── MagentoConfigFixture │ │ │ │ │ │ ├── AddFixtureTest.php │ │ │ │ │ │ ├── RemoveFixtureTest.php │ │ │ │ │ │ └── ReplaceFixtureTest.php │ │ │ │ │ ├── MagentoDataFixture │ │ │ │ │ │ ├── AddFixtureTest.php │ │ │ │ │ │ ├── RemoveFixtureTest.php │ │ │ │ │ │ ├── ReplaceFixtureTest.php │ │ │ │ │ │ └── SortFixturesTest.php │ │ │ │ │ ├── MagentoDataFixtureBeforeTransaction │ │ │ │ │ │ ├── AddFixtureTest.php │ │ │ │ │ │ ├── RemoveFixtureTest.php │ │ │ │ │ │ └── ReplaceFixtureTest.php │ │ │ │ │ ├── Skip │ │ │ │ │ │ ├── SkipClassTest.php │ │ │ │ │ │ ├── SkipDataSetTest.php │ │ │ │ │ │ └── SkipMethodTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── fixture1_first_module.php │ │ │ │ │ │ ├── fixture1_first_module_rollback.php │ │ │ │ │ │ ├── fixture2_first_module.php │ │ │ │ │ │ ├── fixture2_first_module_rollback.php │ │ │ │ │ │ ├── fixture3_first_module.php │ │ │ │ │ │ ├── fixture3_first_module_rollback.php │ │ │ │ │ │ ├── global_fixture_first_module.php │ │ │ │ │ │ └── global_fixture_first_module_rollback.php │ │ │ │ │ ├── TestModuleOverrideConfig2 │ │ │ │ │ └── _files │ │ │ │ │ │ ├── fixture1_second_module.php │ │ │ │ │ │ ├── fixture1_second_module_rollback.php │ │ │ │ │ │ ├── fixture2_second_module.php │ │ │ │ │ │ ├── fixture2_second_module_rollback.php │ │ │ │ │ │ ├── fixture3_second_module.php │ │ │ │ │ │ ├── fixture3_second_module_rollback.php │ │ │ │ │ │ └── fixture_with_required_fixture.php │ │ │ │ │ ├── TestModuleOverrideConfig3 │ │ │ │ │ └── _files │ │ │ │ │ │ ├── fixture1_third_module.php │ │ │ │ │ │ └── fixture1_third_module_rollback.php │ │ │ │ │ ├── TestModuleSample │ │ │ │ │ └── ModuleInstallationTest.php │ │ │ │ │ ├── Theme │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ │ └── System │ │ │ │ │ │ │ │ └── Design │ │ │ │ │ │ │ │ └── Theme │ │ │ │ │ │ │ │ └── Edit │ │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ │ └── GeneralTest.php │ │ │ │ │ │ └── Html │ │ │ │ │ │ │ ├── BreadcrumbsTest.php │ │ │ │ │ │ │ └── FooterTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── System │ │ │ │ │ │ │ └── Design │ │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ └── SaveTest.php │ │ │ │ │ │ │ ├── ThemeControllerTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── simple-js-file.js │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ ├── Processor │ │ │ │ │ │ │ │ └── DesignThemeTest.php │ │ │ │ │ │ │ └── ValidatorTest.php │ │ │ │ │ │ ├── Design │ │ │ │ │ │ │ ├── Backend │ │ │ │ │ │ │ │ └── ExceptionsTest.php │ │ │ │ │ │ │ └── ConfigTest.php │ │ │ │ │ │ ├── DesignTest.php │ │ │ │ │ │ ├── Layout │ │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ │ └── ReaderTest.php │ │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ ├── page_layouts.xml │ │ │ │ │ │ │ │ └── page_layouts2.xml │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ │ └── Theme │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ ├── Theme │ │ │ │ │ │ │ ├── CollectionTest.php │ │ │ │ │ │ │ ├── Domain │ │ │ │ │ │ │ │ └── VirtualTest.php │ │ │ │ │ │ │ ├── FileTest.php │ │ │ │ │ │ │ ├── RegistrationTest.php │ │ │ │ │ │ │ ├── Source │ │ │ │ │ │ │ │ ├── ThemeTest.php │ │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ │ └── design │ │ │ │ │ │ │ │ │ └── frontend │ │ │ │ │ │ │ │ │ ├── a_d │ │ │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ │ │ │ ├── b_e │ │ │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ │ │ │ ├── magento_default │ │ │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ │ │ │ └── magento_g │ │ │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ │ ├── StoreThemesResolverInterfaceTest.php │ │ │ │ │ │ │ └── ThemeProviderTest.php │ │ │ │ │ │ ├── ThemeTest.php │ │ │ │ │ │ ├── View │ │ │ │ │ │ │ └── DesignTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── design │ │ │ │ │ │ │ ├── adminhtml │ │ │ │ │ │ │ └── Vendor │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ │ ├── area_two │ │ │ │ │ │ │ └── Vendor │ │ │ │ │ │ │ │ └── theme_one │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ └── file │ │ │ │ │ │ │ ├── design_area │ │ │ │ │ │ │ └── Vendor │ │ │ │ │ │ │ │ └── theme_one │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ └── file │ │ │ │ │ │ │ └── frontend │ │ │ │ │ │ │ ├── Magento │ │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ │ └── default_iphone │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ └── preview_image.jpg │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ │ ├── Test │ │ │ │ │ │ │ ├── cache_test_theme │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ │ ├── default │ │ │ │ │ │ │ │ ├── Magento_Catalog │ │ │ │ │ │ │ │ │ ├── catalog_category_view.xml │ │ │ │ │ │ │ │ │ ├── catalog_category_view_type_default.xml │ │ │ │ │ │ │ │ │ ├── catalog_product_view.xml │ │ │ │ │ │ │ │ │ ├── catalog_product_view_type_simple.xml │ │ │ │ │ │ │ │ │ ├── templates │ │ │ │ │ │ │ │ │ │ └── theme_template.phtml │ │ │ │ │ │ │ │ │ ├── theme_file.txt │ │ │ │ │ │ │ │ │ └── theme_file_with_2_dots..txt │ │ │ │ │ │ │ │ ├── Magento_Cms │ │ │ │ │ │ │ │ │ └── layout_test_handle_extra.xml │ │ │ │ │ │ │ │ ├── Magento_Core │ │ │ │ │ │ │ │ │ ├── layout_test_handle_main.xml │ │ │ │ │ │ │ │ │ └── layout_test_handle_sample.xml │ │ │ │ │ │ │ │ ├── Namespace_Module │ │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ │ └── favicon.ico │ │ │ │ │ │ │ │ ├── etc │ │ │ │ │ │ │ │ │ └── view.xml │ │ │ │ │ │ │ │ ├── i18n │ │ │ │ │ │ │ │ │ └── en_US.csv │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ │ └── styles.css │ │ │ │ │ │ │ │ │ ├── i18n │ │ │ │ │ │ │ │ │ └── fr_FR │ │ │ │ │ │ │ │ │ │ └── logo.gif │ │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ │ ├── logo.gif │ │ │ │ │ │ │ │ │ └── logo_email.gif │ │ │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ │ │ └── tabs.js │ │ │ │ │ │ │ │ │ ├── result_source.css │ │ │ │ │ │ │ │ │ ├── result_source_dev.css │ │ │ │ │ │ │ │ │ └── source.less │ │ │ │ │ │ │ ├── publication │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ │ └── test_theme │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ │ ├── Vendor │ │ │ │ │ │ │ ├── custom_theme │ │ │ │ │ │ │ │ ├── Fixture_Module │ │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ │ └── fixture_script.js │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ │ └── default │ │ │ │ │ │ │ │ ├── Namespace_Module │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ └── absolute_valid_module.gif │ │ │ │ │ │ │ │ ├── access_violation.php │ │ │ │ │ │ │ │ ├── registration.php │ │ │ │ │ │ │ │ ├── theme.xml │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ │ ├── 1.gif │ │ │ │ │ │ │ │ ├── base64.css │ │ │ │ │ │ │ │ ├── body.gif │ │ │ │ │ │ │ │ ├── deep │ │ │ │ │ │ │ │ │ └── recursive.css │ │ │ │ │ │ │ │ ├── exception.css │ │ │ │ │ │ │ │ └── file.css │ │ │ │ │ │ │ │ ├── h1.gif │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ └── h2.gif │ │ │ │ │ │ │ │ ├── recursive.css │ │ │ │ │ │ │ │ ├── recursive.gif │ │ │ │ │ │ │ │ ├── recursive2.gif │ │ │ │ │ │ │ │ └── scripts.js │ │ │ │ │ │ │ └── access_violation.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── config_data.php │ │ │ │ │ │ ├── config_data_rollback.php │ │ │ │ │ │ ├── design_change.php │ │ │ │ │ │ ├── design_change_rollback.php │ │ │ │ │ │ ├── design_change_timezone.php │ │ │ │ │ │ └── design_change_timezone_rollback.php │ │ │ │ │ ├── Translation │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── AjaxTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── InlineParserTest.php │ │ │ │ │ │ ├── Js │ │ │ │ │ │ │ ├── DataProviderTest.php │ │ │ │ │ │ │ └── PreProcessorTest.php │ │ │ │ │ │ ├── StringTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── Magento │ │ │ │ │ │ │ ├── Catalog │ │ │ │ │ │ │ │ └── i18n │ │ │ │ │ │ │ │ │ └── en_US.csv │ │ │ │ │ │ │ ├── Store │ │ │ │ │ │ │ │ └── i18n │ │ │ │ │ │ │ │ │ ├── en_AU.csv │ │ │ │ │ │ │ │ │ ├── en_UK.csv │ │ │ │ │ │ │ │ │ └── en_US.csv │ │ │ │ │ │ │ └── design │ │ │ │ │ │ │ │ └── Magento │ │ │ │ │ │ │ │ └── theme │ │ │ │ │ │ │ │ └── i18n │ │ │ │ │ │ │ │ └── en_US.csv │ │ │ │ │ │ │ ├── local_config │ │ │ │ │ │ │ ├── local_config │ │ │ │ │ │ │ │ ├── custom │ │ │ │ │ │ │ │ │ ├── local.xml │ │ │ │ │ │ │ │ │ └── prohibited.filename.xml │ │ │ │ │ │ │ │ ├── local.xml │ │ │ │ │ │ │ │ └── z.xml │ │ │ │ │ │ │ └── no_local_config │ │ │ │ │ │ │ │ ├── a.xml │ │ │ │ │ │ │ │ ├── b.xml │ │ │ │ │ │ │ │ └── custom │ │ │ │ │ │ │ │ └── local.xml │ │ │ │ │ │ │ ├── locale │ │ │ │ │ │ │ └── en_AU │ │ │ │ │ │ │ │ └── config.xml │ │ │ │ │ │ │ └── media │ │ │ │ │ │ │ └── some_file.txt │ │ │ │ │ └── _files │ │ │ │ │ │ ├── db_translate.php │ │ │ │ │ │ └── db_translate_admin_store.php │ │ │ │ │ ├── Ui │ │ │ │ │ ├── Api │ │ │ │ │ │ └── BookmarkRepositoryTest.php │ │ │ │ │ ├── Component │ │ │ │ │ │ ├── ConfigurationTest.php │ │ │ │ │ │ ├── Control │ │ │ │ │ │ │ ├── ButtonTest.php │ │ │ │ │ │ │ └── SplitButtonTest.php │ │ │ │ │ │ └── Form │ │ │ │ │ │ │ └── Element │ │ │ │ │ │ │ ├── DataType │ │ │ │ │ │ │ └── DateTest.php │ │ │ │ │ │ │ └── MultiSelectTest.php │ │ │ │ │ ├── Config │ │ │ │ │ │ ├── ConverterTest.php │ │ │ │ │ │ ├── FileResolverStub.php │ │ │ │ │ │ ├── Reader │ │ │ │ │ │ │ └── DomTest.php │ │ │ │ │ │ └── ReaderTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── Adminhtml │ │ │ │ │ │ │ └── Index │ │ │ │ │ │ │ │ └── Renderer │ │ │ │ │ │ │ │ └── HandleTest.php │ │ │ │ │ │ └── Index │ │ │ │ │ │ │ └── RenderTest.php │ │ │ │ │ ├── DataProvider │ │ │ │ │ │ ├── EntityFake.php │ │ │ │ │ │ └── SearchResultFactoryTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ └── AuthorizationMock.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── bookmarks.php │ │ │ │ │ │ ├── expected_result_configuration.php │ │ │ │ │ │ └── view │ │ │ │ │ │ ├── module_one │ │ │ │ │ │ └── ui_component │ │ │ │ │ │ │ ├── etc │ │ │ │ │ │ │ └── test_definition.xml │ │ │ │ │ │ │ ├── parent_component.xml │ │ │ │ │ │ │ └── test_component.xml │ │ │ │ │ │ ├── module_two │ │ │ │ │ │ └── ui_component │ │ │ │ │ │ │ ├── etc │ │ │ │ │ │ │ └── test_definition.xml │ │ │ │ │ │ │ ├── parent_component.xml │ │ │ │ │ │ │ └── test_component.xml │ │ │ │ │ │ └── ui_component │ │ │ │ │ │ ├── arbitrary │ │ │ │ │ │ ├── action.xml │ │ │ │ │ │ ├── actionDelete.xml │ │ │ │ │ │ ├── actions.xml │ │ │ │ │ │ ├── actionsColumn.xml │ │ │ │ │ │ ├── bookmark.xml │ │ │ │ │ │ ├── boolean.xml │ │ │ │ │ │ ├── button.xml │ │ │ │ │ │ ├── checkbox.xml │ │ │ │ │ │ ├── checkboxset.xml │ │ │ │ │ │ ├── column.xml │ │ │ │ │ │ ├── columns.xml │ │ │ │ │ │ ├── columnsControls.xml │ │ │ │ │ │ ├── component.xml │ │ │ │ │ │ ├── dataSource.xml │ │ │ │ │ │ ├── date.xml │ │ │ │ │ │ ├── dynamicRows.xml │ │ │ │ │ │ ├── email.xml │ │ │ │ │ │ ├── exportButton.xml │ │ │ │ │ │ ├── field.xml │ │ │ │ │ │ ├── fieldset.xml │ │ │ │ │ │ ├── file.xml │ │ │ │ │ │ ├── fileUploader.xml │ │ │ │ │ │ ├── filterDate.xml │ │ │ │ │ │ ├── filterInput.xml │ │ │ │ │ │ ├── filterRange.xml │ │ │ │ │ │ ├── filters.xml │ │ │ │ │ │ ├── form.xml │ │ │ │ │ │ ├── hidden.xml │ │ │ │ │ │ ├── htmlContent.xml │ │ │ │ │ │ ├── imageUploader.xml │ │ │ │ │ │ ├── input.xml │ │ │ │ │ │ ├── insertForm.xml │ │ │ │ │ │ ├── insertListing.xml │ │ │ │ │ │ ├── listing.xml │ │ │ │ │ │ ├── listingToolbar.xml │ │ │ │ │ │ ├── massaction.xml │ │ │ │ │ │ ├── modal.xml │ │ │ │ │ │ ├── multiline.xml │ │ │ │ │ │ ├── multiselect.xml │ │ │ │ │ │ ├── paging.xml │ │ │ │ │ │ ├── radioset.xml │ │ │ │ │ │ ├── range.xml │ │ │ │ │ │ ├── select.xml │ │ │ │ │ │ ├── selectionsColumn.xml │ │ │ │ │ │ ├── tab.xml │ │ │ │ │ │ ├── text.xml │ │ │ │ │ │ ├── textarea.xml │ │ │ │ │ │ └── wysiwyg.xml │ │ │ │ │ │ ├── etc │ │ │ │ │ │ └── test_definition_merged.xml │ │ │ │ │ │ ├── expected │ │ │ │ │ │ ├── action.php │ │ │ │ │ │ ├── actionDelete.php │ │ │ │ │ │ ├── actions.php │ │ │ │ │ │ ├── actionsColumn.php │ │ │ │ │ │ ├── bookmark.php │ │ │ │ │ │ ├── boolean.php │ │ │ │ │ │ ├── button.php │ │ │ │ │ │ ├── checkbox.php │ │ │ │ │ │ ├── checkboxset.php │ │ │ │ │ │ ├── column.php │ │ │ │ │ │ ├── columns.php │ │ │ │ │ │ ├── columnsControls.php │ │ │ │ │ │ ├── component.php │ │ │ │ │ │ ├── dataSource.php │ │ │ │ │ │ ├── date.php │ │ │ │ │ │ ├── dynamicRows.php │ │ │ │ │ │ ├── email.php │ │ │ │ │ │ ├── exportButton.php │ │ │ │ │ │ ├── field.php │ │ │ │ │ │ ├── fieldset.php │ │ │ │ │ │ ├── file.php │ │ │ │ │ │ ├── fileUploader.php │ │ │ │ │ │ ├── filterDate.php │ │ │ │ │ │ ├── filterInput.php │ │ │ │ │ │ ├── filterRange.php │ │ │ │ │ │ ├── filters.php │ │ │ │ │ │ ├── form.php │ │ │ │ │ │ ├── hidden.php │ │ │ │ │ │ ├── htmlContent.php │ │ │ │ │ │ ├── imageUploader.php │ │ │ │ │ │ ├── input.php │ │ │ │ │ │ ├── insertForm.php │ │ │ │ │ │ ├── insertListing.php │ │ │ │ │ │ ├── listing.php │ │ │ │ │ │ ├── listingToolbar.php │ │ │ │ │ │ ├── massaction.php │ │ │ │ │ │ ├── modal.php │ │ │ │ │ │ ├── multiline.php │ │ │ │ │ │ ├── multiselect.php │ │ │ │ │ │ ├── paging.php │ │ │ │ │ │ ├── radioset.php │ │ │ │ │ │ ├── range.php │ │ │ │ │ │ ├── select.php │ │ │ │ │ │ ├── selectionsColumn.php │ │ │ │ │ │ ├── tab.php │ │ │ │ │ │ ├── text.php │ │ │ │ │ │ ├── textarea.php │ │ │ │ │ │ └── wysiwyg.php │ │ │ │ │ │ ├── mixed │ │ │ │ │ │ ├── action.xml │ │ │ │ │ │ ├── actionDelete.xml │ │ │ │ │ │ ├── actions.xml │ │ │ │ │ │ ├── actionsColumn.xml │ │ │ │ │ │ ├── bookmark.xml │ │ │ │ │ │ ├── boolean.xml │ │ │ │ │ │ ├── button.xml │ │ │ │ │ │ ├── checkbox.xml │ │ │ │ │ │ ├── checkboxset.xml │ │ │ │ │ │ ├── column.xml │ │ │ │ │ │ ├── columns.xml │ │ │ │ │ │ ├── columnsControls.xml │ │ │ │ │ │ ├── component.xml │ │ │ │ │ │ ├── container.xml │ │ │ │ │ │ ├── dataProvider.xml │ │ │ │ │ │ ├── dataSource.xml │ │ │ │ │ │ ├── date.xml │ │ │ │ │ │ ├── dynamicRows.xml │ │ │ │ │ │ ├── email.xml │ │ │ │ │ │ ├── exportButton.xml │ │ │ │ │ │ ├── field.xml │ │ │ │ │ │ ├── fieldset.xml │ │ │ │ │ │ ├── file.xml │ │ │ │ │ │ ├── fileUploader.xml │ │ │ │ │ │ ├── filterDate.xml │ │ │ │ │ │ ├── filterInput.xml │ │ │ │ │ │ ├── filterRange.xml │ │ │ │ │ │ ├── filters.xml │ │ │ │ │ │ ├── form.xml │ │ │ │ │ │ ├── hidden.xml │ │ │ │ │ │ ├── htmlContent.xml │ │ │ │ │ │ ├── imageUploader.xml │ │ │ │ │ │ ├── input.xml │ │ │ │ │ │ ├── insertForm.xml │ │ │ │ │ │ ├── insertListing.xml │ │ │ │ │ │ ├── listing.xml │ │ │ │ │ │ ├── listingToolbar.xml │ │ │ │ │ │ ├── massaction.xml │ │ │ │ │ │ ├── modal.xml │ │ │ │ │ │ ├── multiline.xml │ │ │ │ │ │ ├── multiselect.xml │ │ │ │ │ │ ├── nav.xml │ │ │ │ │ │ ├── number.xml │ │ │ │ │ │ ├── paging.xml │ │ │ │ │ │ ├── price.xml │ │ │ │ │ │ ├── radioset.xml │ │ │ │ │ │ ├── range.xml │ │ │ │ │ │ ├── select.xml │ │ │ │ │ │ ├── selectionsColumn.xml │ │ │ │ │ │ ├── tab.xml │ │ │ │ │ │ ├── text.xml │ │ │ │ │ │ ├── textarea.xml │ │ │ │ │ │ └── wysiwyg.xml │ │ │ │ │ │ ├── semantic │ │ │ │ │ │ ├── action.xml │ │ │ │ │ │ ├── actionDelete.xml │ │ │ │ │ │ ├── actions.xml │ │ │ │ │ │ ├── actionsColumn.xml │ │ │ │ │ │ ├── bookmark.xml │ │ │ │ │ │ ├── boolean.xml │ │ │ │ │ │ ├── button.xml │ │ │ │ │ │ ├── checkbox.xml │ │ │ │ │ │ ├── checkboxset.xml │ │ │ │ │ │ ├── column.xml │ │ │ │ │ │ ├── columns.xml │ │ │ │ │ │ ├── columnsControls.xml │ │ │ │ │ │ ├── component.xml │ │ │ │ │ │ ├── container.xml │ │ │ │ │ │ ├── dataProvider.xml │ │ │ │ │ │ ├── dataSource.xml │ │ │ │ │ │ ├── date.xml │ │ │ │ │ │ ├── dynamicRows.xml │ │ │ │ │ │ ├── email.xml │ │ │ │ │ │ ├── exportButton.xml │ │ │ │ │ │ ├── field.xml │ │ │ │ │ │ ├── fieldset.xml │ │ │ │ │ │ ├── file.xml │ │ │ │ │ │ ├── fileUploader.xml │ │ │ │ │ │ ├── filterDate.xml │ │ │ │ │ │ ├── filterInput.xml │ │ │ │ │ │ ├── filterRange.xml │ │ │ │ │ │ ├── filters.xml │ │ │ │ │ │ ├── form.xml │ │ │ │ │ │ ├── hidden.xml │ │ │ │ │ │ ├── htmlContent.xml │ │ │ │ │ │ ├── imageUploader.xml │ │ │ │ │ │ ├── input.xml │ │ │ │ │ │ ├── insertForm.xml │ │ │ │ │ │ ├── insertListing.xml │ │ │ │ │ │ ├── listing.xml │ │ │ │ │ │ ├── listingToolbar.xml │ │ │ │ │ │ ├── massaction.xml │ │ │ │ │ │ ├── modal.xml │ │ │ │ │ │ ├── multiline.xml │ │ │ │ │ │ ├── multiselect.xml │ │ │ │ │ │ ├── nav.xml │ │ │ │ │ │ ├── number.xml │ │ │ │ │ │ ├── paging.xml │ │ │ │ │ │ ├── price.xml │ │ │ │ │ │ ├── radioset.xml │ │ │ │ │ │ ├── range.xml │ │ │ │ │ │ ├── select.xml │ │ │ │ │ │ ├── selectionsColumn.xml │ │ │ │ │ │ ├── tab.xml │ │ │ │ │ │ ├── text.xml │ │ │ │ │ │ ├── textarea.xml │ │ │ │ │ │ └── wysiwyg.xml │ │ │ │ │ │ └── test_component_merged.xml │ │ │ │ │ ├── Ups │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── CarrierTest.php │ │ │ │ │ │ └── CollectRatesTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── ShipmentAcceptResponse.xml │ │ │ │ │ │ ├── ShipmentConfirmRequest.xml │ │ │ │ │ │ ├── ShipmentConfirmResponse.xml │ │ │ │ │ │ ├── ups_rates_response_option1.xml │ │ │ │ │ │ ├── ups_rates_response_option2.xml │ │ │ │ │ │ ├── ups_rates_response_option3.xml │ │ │ │ │ │ ├── ups_rates_response_option4.xml │ │ │ │ │ │ ├── ups_rates_response_option5.xml │ │ │ │ │ │ ├── ups_rates_response_option6.xml │ │ │ │ │ │ ├── ups_rates_response_option7.xml │ │ │ │ │ │ └── ups_rates_response_option8.xml │ │ │ │ │ ├── UrlRewrite │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── Catalog │ │ │ │ │ │ │ ├── Category │ │ │ │ │ │ │ │ ├── EditTest.php │ │ │ │ │ │ │ │ └── TreeTest.php │ │ │ │ │ │ │ ├── Edit │ │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ │ ├── EditTest.php │ │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ ├── Cms │ │ │ │ │ │ │ └── Page │ │ │ │ │ │ │ │ ├── Edit │ │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ │ │ │ ├── EditTest.php │ │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ ├── Edit │ │ │ │ │ │ │ └── FormTest.php │ │ │ │ │ │ ├── EditTest.php │ │ │ │ │ │ └── SelectorTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── UrlRewriteTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── StoreSwitcher │ │ │ │ │ │ │ └── RewriteUrlTest.php │ │ │ │ │ │ └── UrlFinderInterfaceTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── url_rewrite.php │ │ │ │ │ │ ├── url_rewrite_not_existing_entity.php │ │ │ │ │ │ ├── url_rewrite_not_existing_entity_rollback.php │ │ │ │ │ │ ├── url_rewrite_rollback.php │ │ │ │ │ │ ├── url_rewrites.php │ │ │ │ │ │ └── url_rewrites_rollback.php │ │ │ │ │ ├── User │ │ │ │ │ ├── Block │ │ │ │ │ │ ├── Role │ │ │ │ │ │ │ ├── Grid │ │ │ │ │ │ │ │ └── UserTest.php │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ │ └── EditTest.php │ │ │ │ │ │ └── User │ │ │ │ │ │ │ └── Edit │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ └── MainTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ ├── AuthTest.php │ │ │ │ │ │ │ ├── Locks │ │ │ │ │ │ │ ├── GridTest.php │ │ │ │ │ │ │ ├── IndexTest.php │ │ │ │ │ │ │ └── MassUnlockTest.php │ │ │ │ │ │ │ ├── User │ │ │ │ │ │ │ ├── DeleteTest.php │ │ │ │ │ │ │ ├── InvalidateTokenTest.php │ │ │ │ │ │ │ └── RoleTest.php │ │ │ │ │ │ │ └── UserTest.php │ │ │ │ │ ├── Helper │ │ │ │ │ │ └── DataTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ │ ├── Role │ │ │ │ │ │ │ │ └── User │ │ │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ │ └── UserTest.php │ │ │ │ │ │ └── UserTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── dummy_user.php │ │ │ │ │ │ ├── locked_users.php │ │ │ │ │ │ ├── user_with_custom_role.php │ │ │ │ │ │ ├── user_with_custom_role_rollback.php │ │ │ │ │ │ ├── user_with_role.php │ │ │ │ │ │ └── user_with_role_rollback.php │ │ │ │ │ ├── Usps │ │ │ │ │ ├── Api │ │ │ │ │ │ └── GuestCouponManagementTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── cart_rule_coupon_free_shipping.php │ │ │ │ │ │ ├── cart_rule_coupon_free_shipping_rollback.php │ │ │ │ │ │ ├── rates_response.xml │ │ │ │ │ │ ├── response_rates.xml │ │ │ │ │ │ └── success_usps_response_rates.xml │ │ │ │ │ └── Model │ │ │ │ │ │ └── CarrierTest.php │ │ │ │ │ ├── Variable │ │ │ │ │ ├── Block │ │ │ │ │ │ └── System │ │ │ │ │ │ │ └── Variable │ │ │ │ │ │ │ └── EditTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── System │ │ │ │ │ │ │ └── VariableTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ └── VariableTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ └── variable.php │ │ │ │ │ ├── Vault │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── PaymentTokenRepositoryTest.php │ │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ │ └── PaymentTokenTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── customer.php │ │ │ │ │ │ ├── payflowpro_vault_token.php │ │ │ │ │ │ ├── payment_tokens.php │ │ │ │ │ │ └── token.php │ │ │ │ │ ├── Version │ │ │ │ │ └── Controller │ │ │ │ │ │ └── Index │ │ │ │ │ │ └── IndexTest.php │ │ │ │ │ ├── Webapi │ │ │ │ │ ├── Controller │ │ │ │ │ │ ├── PathProcessorTest.php │ │ │ │ │ │ ├── Rest │ │ │ │ │ │ │ └── SchemaRequestProcessorTest.php │ │ │ │ │ │ └── SoapTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ ├── ReaderTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ ├── webapi.php │ │ │ │ │ │ │ │ ├── webapiA.xml │ │ │ │ │ │ │ │ └── webapiB.xml │ │ │ │ │ │ ├── ServiceMetadataTest.php │ │ │ │ │ │ └── Soap │ │ │ │ │ │ │ └── ConfigTest.php │ │ │ │ │ ├── Service │ │ │ │ │ │ └── Entity │ │ │ │ │ │ │ └── TestService.php │ │ │ │ │ ├── ServiceNameCollisionTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── webapi_user.php │ │ │ │ │ │ └── webapi_user_rollback.php │ │ │ │ │ ├── WebapiAsync │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Rest │ │ │ │ │ │ │ ├── AsynchronousSchemaRequestProcessorMock.php │ │ │ │ │ │ │ └── AsynchronousSchemaRequestProcessorTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── AuthorizationMock.php │ │ │ │ │ │ └── Rest │ │ │ │ │ │ │ └── Swagger │ │ │ │ │ │ │ └── GeneratorTest.php │ │ │ │ │ └── Plugin │ │ │ │ │ │ └── ServiceMetadataTest.php │ │ │ │ │ ├── Weee │ │ │ │ │ ├── Block │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ └── View │ │ │ │ │ │ │ └── Attribute │ │ │ │ │ │ │ └── FixedProductTaxAttributeTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ └── Attribute │ │ │ │ │ │ │ ├── Delete │ │ │ │ │ │ │ └── WeeeAttributesControllerTest.php │ │ │ │ │ │ │ ├── Save │ │ │ │ │ │ │ └── InputType │ │ │ │ │ │ │ │ └── FixedProductTaxTest.php │ │ │ │ │ │ │ └── Update │ │ │ │ │ │ │ └── InputType │ │ │ │ │ │ │ └── FixedProductTaxTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Attribute │ │ │ │ │ │ │ └── Set │ │ │ │ │ │ │ │ └── SaveTest.php │ │ │ │ │ │ ├── Product │ │ │ │ │ │ │ └── Attribute │ │ │ │ │ │ │ │ └── Save │ │ │ │ │ │ │ │ └── AttributeFixedProductTaxTest.php │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ │ └── AttributeTest.php │ │ │ │ │ │ └── TaxTest.php │ │ │ │ │ ├── Ui │ │ │ │ │ │ └── DataProvider │ │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ └── Form │ │ │ │ │ │ │ └── Modifier │ │ │ │ │ │ │ └── Eav │ │ │ │ │ │ │ └── FixedAttributeTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── fixed_product_attribute.php │ │ │ │ │ │ ├── fixed_product_attribute_rollback.php │ │ │ │ │ │ ├── product_with_fpt.php │ │ │ │ │ │ ├── product_with_fpt_rollback.php │ │ │ │ │ │ ├── product_with_two_fpt.php │ │ │ │ │ │ └── product_with_two_fpt_rollback.php │ │ │ │ │ ├── Widget │ │ │ │ │ ├── Block │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ └── Widget │ │ │ │ │ │ │ ├── Instance │ │ │ │ │ │ │ ├── Edit │ │ │ │ │ │ │ │ ├── Chooser │ │ │ │ │ │ │ │ │ ├── ContainerTest.php │ │ │ │ │ │ │ │ │ ├── DesignAbstractionTest.php │ │ │ │ │ │ │ │ │ ├── LayoutTest.php │ │ │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ │ │ ├── design-abstraction_select.html │ │ │ │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ │ │ │ ├── child_page_with_inherited_containers.xml │ │ │ │ │ │ │ │ │ │ ├── child_page_with_inherited_imported_containers.xml │ │ │ │ │ │ │ │ │ │ ├── child_page_with_own_containers.xml │ │ │ │ │ │ │ │ │ │ ├── child_page_without_containers.xml │ │ │ │ │ │ │ │ │ │ ├── customer_account.xml │ │ │ │ │ │ │ │ │ │ ├── non_page_handle_with_own_containers.xml │ │ │ │ │ │ │ │ │ │ ├── page_empty.xml │ │ │ │ │ │ │ │ │ │ ├── root_page_with_imported_containers.xml │ │ │ │ │ │ │ │ │ │ ├── root_page_with_own_containers.xml │ │ │ │ │ │ │ │ │ │ ├── root_page_without_containers.xml │ │ │ │ │ │ │ │ │ │ └── root_page_without_own_containers.xml │ │ │ │ │ │ │ │ │ │ └── page_types_select.html │ │ │ │ │ │ │ │ └── Tab │ │ │ │ │ │ │ │ │ ├── Main │ │ │ │ │ │ │ │ │ └── LayoutTest.php │ │ │ │ │ │ │ │ │ └── MainTest.php │ │ │ │ │ │ │ └── EditTest.php │ │ │ │ │ │ │ └── InstanceTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ │ └── Adminhtml │ │ │ │ │ │ │ ├── Widget │ │ │ │ │ │ │ ├── Instance │ │ │ │ │ │ │ │ └── DeleteTest.php │ │ │ │ │ │ │ └── InstanceTest.php │ │ │ │ │ │ │ └── WidgetTest.php │ │ │ │ │ ├── Model │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ ├── DataTest.php │ │ │ │ │ │ │ ├── ReaderTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ ├── catalog_new_products_list.xml │ │ │ │ │ │ │ │ ├── expectedGlobalArray.php │ │ │ │ │ │ │ │ ├── expectedGlobalDesignArray.php │ │ │ │ │ │ │ │ ├── expectedMergedArray.php │ │ │ │ │ │ │ │ ├── orders_and_returns.xml │ │ │ │ │ │ │ │ └── orders_and_returns_customized.xml │ │ │ │ │ │ ├── Layout │ │ │ │ │ │ │ └── UpdateTest.php │ │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ │ └── Layout │ │ │ │ │ │ │ │ └── UpdateTest.php │ │ │ │ │ │ ├── Template │ │ │ │ │ │ │ └── FilterTest.php │ │ │ │ │ │ ├── Widget │ │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ │ └── InstanceTest.php │ │ │ │ │ │ └── WidgetTest.php │ │ │ │ │ ├── Setup │ │ │ │ │ │ └── LayoutUpdateConverterTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── cms_page_link_widget.php │ │ │ │ │ │ ├── cms_page_link_widget_rollback.php │ │ │ │ │ │ ├── design │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ │ └── magento_basic │ │ │ │ │ │ │ ├── Magento_Catalog │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ │ └── product_widget_new.png │ │ │ │ │ │ │ ├── composer.json │ │ │ │ │ │ │ └── theme.xml │ │ │ │ │ │ ├── layout_cache.php │ │ │ │ │ │ ├── layout_update.php │ │ │ │ │ │ ├── new_widget.php │ │ │ │ │ │ ├── new_widget_rollback.php │ │ │ │ │ │ ├── widgets.php │ │ │ │ │ │ └── widgets_rollback.php │ │ │ │ │ └── Wishlist │ │ │ │ │ ├── Block │ │ │ │ │ ├── Account │ │ │ │ │ │ └── LinkTest.php │ │ │ │ │ ├── Catalog │ │ │ │ │ │ └── Product │ │ │ │ │ │ │ ├── ProductList │ │ │ │ │ │ │ └── Item │ │ │ │ │ │ │ │ └── AddTo │ │ │ │ │ │ │ │ └── WishlistTest.php │ │ │ │ │ │ │ └── View │ │ │ │ │ │ │ └── AddTo │ │ │ │ │ │ │ └── WishlistTest.php │ │ │ │ │ ├── Customer │ │ │ │ │ │ ├── SharingTest.php │ │ │ │ │ │ ├── SidebarTest.php │ │ │ │ │ │ ├── Wishlist │ │ │ │ │ │ │ ├── Item │ │ │ │ │ │ │ │ ├── ColumnTest.php │ │ │ │ │ │ │ │ └── OptionsTest.php │ │ │ │ │ │ │ └── ItemsTest.php │ │ │ │ │ │ └── WishlistTest.php │ │ │ │ │ ├── LinkTest.php │ │ │ │ │ └── Share │ │ │ │ │ │ └── WishlistTest.php │ │ │ │ │ ├── Controller │ │ │ │ │ ├── Index │ │ │ │ │ │ ├── AddTest.php │ │ │ │ │ │ ├── AllcartTest.php │ │ │ │ │ │ ├── CartTest.php │ │ │ │ │ │ ├── IndexTest.php │ │ │ │ │ │ ├── PluginTest.php │ │ │ │ │ │ ├── RemoveTest.php │ │ │ │ │ │ ├── SendTest.php │ │ │ │ │ │ ├── UpdateItemOptionsTest.php │ │ │ │ │ │ └── UpdateTest.php │ │ │ │ │ ├── ShareTest.php │ │ │ │ │ └── SharedTest.php │ │ │ │ │ ├── Helper │ │ │ │ │ └── DataTest.php │ │ │ │ │ ├── Model │ │ │ │ │ ├── ItemTest.php │ │ │ │ │ ├── ResourceModel │ │ │ │ │ │ └── Item │ │ │ │ │ │ │ ├── Collection │ │ │ │ │ │ │ └── GridTest.php │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ └── WishlistTest.php │ │ │ │ │ ├── Plugin │ │ │ │ │ └── Model │ │ │ │ │ │ └── ResourceModel │ │ │ │ │ │ └── ProductTest.php │ │ │ │ │ └── _files │ │ │ │ │ ├── two_wishlists_for_two_diff_customers.php │ │ │ │ │ ├── two_wishlists_for_two_diff_customers_rollback.php │ │ │ │ │ ├── wishlist.php │ │ │ │ │ ├── wishlist_on_second_website.php │ │ │ │ │ ├── wishlist_on_second_website_rollback.php │ │ │ │ │ ├── wishlist_rollback.php │ │ │ │ │ ├── wishlist_shared.php │ │ │ │ │ ├── wishlist_shared_rollback.php │ │ │ │ │ ├── wishlist_with_configurable_product.php │ │ │ │ │ ├── wishlist_with_configurable_product_rollback.php │ │ │ │ │ ├── wishlist_with_disabled_product.php │ │ │ │ │ ├── wishlist_with_disabled_product_rollback.php │ │ │ │ │ ├── wishlist_with_disabled_simple_product.php │ │ │ │ │ ├── wishlist_with_disabled_simple_product_rollback.php │ │ │ │ │ ├── wishlist_with_grouped_product.php │ │ │ │ │ ├── wishlist_with_grouped_product_rollback.php │ │ │ │ │ ├── wishlist_with_not_visible_product.php │ │ │ │ │ ├── wishlist_with_not_visible_product_rollback.php │ │ │ │ │ ├── wishlist_with_product_qty_increments.php │ │ │ │ │ ├── wishlist_with_product_qty_increments_rollback.php │ │ │ │ │ ├── wishlist_with_product_qty_three.php │ │ │ │ │ ├── wishlist_with_product_qty_three_rollback.php │ │ │ │ │ ├── wishlist_with_simple_product.php │ │ │ │ │ └── wishlist_with_simple_product_rollback.php │ │ │ └── tmp │ │ │ │ └── .gitignore │ │ ├── js │ │ │ └── jasmine │ │ │ │ ├── assets │ │ │ │ ├── apply │ │ │ │ │ ├── components │ │ │ │ │ │ └── fn.js │ │ │ │ │ ├── config.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── templates │ │ │ │ │ │ └── node.html │ │ │ │ ├── gallery │ │ │ │ │ └── config.json │ │ │ │ ├── jsbuild │ │ │ │ │ ├── config.js │ │ │ │ │ ├── external.js │ │ │ │ │ └── local.js │ │ │ │ ├── lib │ │ │ │ │ └── web │ │ │ │ │ │ └── mage │ │ │ │ │ │ ├── menu.html │ │ │ │ │ │ ├── tabs.html │ │ │ │ │ │ └── translate-inline.html │ │ │ │ ├── script │ │ │ │ │ ├── config.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── templates │ │ │ │ │ │ ├── selector.html │ │ │ │ │ │ └── virtual.html │ │ │ │ ├── text │ │ │ │ │ ├── config.js │ │ │ │ │ ├── external.html │ │ │ │ │ └── local.html │ │ │ │ └── tools.js │ │ │ │ ├── require.conf.js │ │ │ │ ├── spec_runner │ │ │ │ ├── index.js │ │ │ │ ├── settings.json │ │ │ │ ├── tasks │ │ │ │ │ ├── connect.js │ │ │ │ │ └── jasmine.js │ │ │ │ └── template.html │ │ │ │ └── tests │ │ │ │ ├── app │ │ │ │ └── code │ │ │ │ │ └── Magento │ │ │ │ │ ├── Backend │ │ │ │ │ └── view │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ └── web │ │ │ │ │ │ └── js │ │ │ │ │ │ └── validate-store.test.js │ │ │ │ │ ├── Bundle │ │ │ │ │ ├── adminhtml │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── components │ │ │ │ │ │ │ └── bundle-checkbox.test.js │ │ │ │ │ └── base │ │ │ │ │ │ └── js │ │ │ │ │ │ └── price-bundle.test.js │ │ │ │ │ ├── Catalog │ │ │ │ │ ├── adminhtml │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── dynamic-rows-import-custom-options.test.js │ │ │ │ │ │ │ └── product-ui-select.test.js │ │ │ │ │ │ │ ├── disable-on-option │ │ │ │ │ │ │ └── yesno.test.js │ │ │ │ │ │ │ ├── product-gallery.test.js │ │ │ │ │ │ │ ├── use-parent-settings │ │ │ │ │ │ │ └── toggle-disabled-mixin.test.js │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ └── percentage-price-calculator.test.js │ │ │ │ │ ├── base │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── product │ │ │ │ │ │ │ └── list │ │ │ │ │ │ │ └── columns │ │ │ │ │ │ │ ├── final-price.test.js │ │ │ │ │ │ │ └── image.test.js │ │ │ │ │ └── frontend │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── product │ │ │ │ │ │ ├── breadcrumbs.test.js │ │ │ │ │ │ ├── list │ │ │ │ │ │ │ └── toolbar.test.js │ │ │ │ │ │ ├── remaining-characters.test.js │ │ │ │ │ │ ├── storage │ │ │ │ │ │ │ ├── data-storage.test.js │ │ │ │ │ │ │ ├── ids-storage-compare.test.js │ │ │ │ │ │ │ ├── ids-storage.test.js │ │ │ │ │ │ │ └── storage-service.test.js │ │ │ │ │ │ └── view │ │ │ │ │ │ │ └── product-ids-resolver.test.js │ │ │ │ │ │ └── storage-manager.test.js │ │ │ │ │ ├── Checkout │ │ │ │ │ ├── base │ │ │ │ │ │ └── web │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── model │ │ │ │ │ │ │ └── default-post-code-resolver.test.js │ │ │ │ │ └── frontend │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── action │ │ │ │ │ │ ├── redirect-on-success.test.js │ │ │ │ │ │ └── set-payment-information-extended.test.js │ │ │ │ │ │ ├── empty-cart.test.js │ │ │ │ │ │ ├── model │ │ │ │ │ │ ├── cart │ │ │ │ │ │ │ ├── cache.test.js │ │ │ │ │ │ │ ├── estimate-service.test.js │ │ │ │ │ │ │ └── totals-processor │ │ │ │ │ │ │ │ └── default.test.js │ │ │ │ │ │ ├── error-processor.test.js │ │ │ │ │ │ └── new-customer-address.test.js │ │ │ │ │ │ ├── region-updater.test.js │ │ │ │ │ │ ├── sidebar.test.js │ │ │ │ │ │ └── view │ │ │ │ │ │ ├── cart │ │ │ │ │ │ └── shipping-estimation.test.js │ │ │ │ │ │ ├── form │ │ │ │ │ │ └── element │ │ │ │ │ │ │ └── email.test.js │ │ │ │ │ │ ├── minicart.test.js │ │ │ │ │ │ ├── shipping.test.js │ │ │ │ │ │ └── summary │ │ │ │ │ │ └── cart-items.test.js │ │ │ │ │ ├── CheckoutAgreements │ │ │ │ │ └── frontend │ │ │ │ │ │ └── js │ │ │ │ │ │ └── model │ │ │ │ │ │ ├── agreement-validator.test.js │ │ │ │ │ │ ├── place-order-mixin.test.js │ │ │ │ │ │ └── set-payment-information-mixin.test.js │ │ │ │ │ ├── ConfigurableProduct │ │ │ │ │ └── view │ │ │ │ │ │ ├── adminhtml │ │ │ │ │ │ └── web │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── dynamic-rows-configurable.test.js │ │ │ │ │ │ │ └── qty-configurable.test.js │ │ │ │ │ │ │ └── variations │ │ │ │ │ │ │ └── variations.test.js │ │ │ │ │ │ └── frontend │ │ │ │ │ │ └── js │ │ │ │ │ │ └── configurable.test.js │ │ │ │ │ ├── Customer │ │ │ │ │ ├── adminhtml │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ └── form │ │ │ │ │ │ │ └── components │ │ │ │ │ │ │ ├── form.test.js │ │ │ │ │ │ │ └── insert-listing.test.js │ │ │ │ │ └── frontend │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── customer-data.test.js │ │ │ │ │ │ ├── invalidation-processor.test.js │ │ │ │ │ │ ├── model │ │ │ │ │ │ └── customer │ │ │ │ │ │ │ └── address.test.js │ │ │ │ │ │ ├── section-config.test.js │ │ │ │ │ │ ├── validation.test.js │ │ │ │ │ │ └── view │ │ │ │ │ │ └── authentication-popup.test.js │ │ │ │ │ ├── InstantPurchase │ │ │ │ │ └── frontend │ │ │ │ │ │ └── web │ │ │ │ │ │ └── js │ │ │ │ │ │ └── view │ │ │ │ │ │ └── instant-purchase.test.js │ │ │ │ │ ├── MediaGalleryUi │ │ │ │ │ └── adminhtml │ │ │ │ │ │ └── js │ │ │ │ │ │ └── grid │ │ │ │ │ │ └── messages.test.js │ │ │ │ │ ├── Msrp │ │ │ │ │ └── frontend │ │ │ │ │ │ └── js │ │ │ │ │ │ └── msrp.test.js │ │ │ │ │ ├── Multishipping │ │ │ │ │ └── frontend │ │ │ │ │ │ └── js │ │ │ │ │ │ └── multi-shipping.test.js │ │ │ │ │ ├── Newsletter │ │ │ │ │ └── frontend │ │ │ │ │ │ └── js │ │ │ │ │ │ └── newsletter-sign-up.test.js │ │ │ │ │ ├── PageCache │ │ │ │ │ └── frontend │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── form-key-provider.test.js │ │ │ │ │ │ └── page-cache.test.js │ │ │ │ │ ├── Payment │ │ │ │ │ ├── adminhtml │ │ │ │ │ │ └── web │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── transparent.test.js │ │ │ │ │ └── base │ │ │ │ │ │ └── js │ │ │ │ │ │ └── model │ │ │ │ │ │ └── credit-card-validation │ │ │ │ │ │ └── validator.test.js │ │ │ │ │ ├── Paypal │ │ │ │ │ └── frontend │ │ │ │ │ │ └── js │ │ │ │ │ │ └── view │ │ │ │ │ │ └── payment │ │ │ │ │ │ └── method-renderer │ │ │ │ │ │ ├── in-context │ │ │ │ │ │ └── checkout-express.test.js │ │ │ │ │ │ └── paypal-express-abstract.test.js │ │ │ │ │ ├── Review │ │ │ │ │ └── view │ │ │ │ │ │ ├── base │ │ │ │ │ │ └── web │ │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ └── product │ │ │ │ │ │ │ │ └── summary.js │ │ │ │ │ │ │ └── template │ │ │ │ │ │ │ └── product │ │ │ │ │ │ │ ├── summary.html │ │ │ │ │ │ │ └── summary_short.html │ │ │ │ │ │ └── frontend │ │ │ │ │ │ └── web │ │ │ │ │ │ └── js │ │ │ │ │ │ └── process-review.test.js │ │ │ │ │ ├── Rule │ │ │ │ │ └── view │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ └── web │ │ │ │ │ │ └── conditions-data-normalizer.test.js │ │ │ │ │ ├── Sales │ │ │ │ │ └── adminhtml │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── grid │ │ │ │ │ │ └── tree-massactions.test.js │ │ │ │ │ │ └── order │ │ │ │ │ │ └── create │ │ │ │ │ │ └── scripts.test.js │ │ │ │ │ ├── Security │ │ │ │ │ └── view │ │ │ │ │ │ └── base │ │ │ │ │ │ └── web │ │ │ │ │ │ └── js │ │ │ │ │ │ └── escaper.test.js │ │ │ │ │ ├── Swatches │ │ │ │ │ └── view │ │ │ │ │ │ └── frontend │ │ │ │ │ │ └── web │ │ │ │ │ │ └── js │ │ │ │ │ │ └── swatch-renderer.test.js │ │ │ │ │ ├── Tax │ │ │ │ │ └── view │ │ │ │ │ │ └── frontend │ │ │ │ │ │ └── web │ │ │ │ │ │ └── js │ │ │ │ │ │ └── view │ │ │ │ │ │ └── checkout │ │ │ │ │ │ └── summary │ │ │ │ │ │ └── grand-total.test.js │ │ │ │ │ ├── Theme │ │ │ │ │ └── view │ │ │ │ │ │ └── frontend │ │ │ │ │ │ └── web │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── cookie-status.test.js │ │ │ │ │ │ └── view │ │ │ │ │ │ ├── add-home-breadcrumb.test.js │ │ │ │ │ │ └── breadcrumbs.test.js │ │ │ │ │ ├── Ui │ │ │ │ │ ├── adminhtml │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── form │ │ │ │ │ │ │ └── insert.test.js │ │ │ │ │ ├── base │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── block-loader.test.js │ │ │ │ │ │ │ ├── core │ │ │ │ │ │ │ └── layout.test.js │ │ │ │ │ │ │ ├── dynamic-rows │ │ │ │ │ │ │ ├── dynamic-rows.test.js │ │ │ │ │ │ │ └── record.test.js │ │ │ │ │ │ │ ├── form │ │ │ │ │ │ │ ├── adapter.test.js │ │ │ │ │ │ │ ├── client.test.js │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── area.test.js │ │ │ │ │ │ │ │ ├── button.test.js │ │ │ │ │ │ │ │ ├── collection.test.js │ │ │ │ │ │ │ │ ├── collection │ │ │ │ │ │ │ │ │ └── item.test.js │ │ │ │ │ │ │ │ ├── group.test.js │ │ │ │ │ │ │ │ ├── html.test.js │ │ │ │ │ │ │ │ ├── multiline.test.js │ │ │ │ │ │ │ │ ├── tab.test.js │ │ │ │ │ │ │ │ └── tab_group.test.js │ │ │ │ │ │ │ ├── element │ │ │ │ │ │ │ │ ├── abstract.test.js │ │ │ │ │ │ │ │ ├── boolean.test.js │ │ │ │ │ │ │ │ ├── color-picker.test.js │ │ │ │ │ │ │ │ ├── date-time.test.js │ │ │ │ │ │ │ │ ├── date.test.js │ │ │ │ │ │ │ │ ├── file-uploader.test.js │ │ │ │ │ │ │ │ ├── image-uploader.test.js │ │ │ │ │ │ │ │ ├── multiselect.test.js │ │ │ │ │ │ │ │ ├── post-code.test.js │ │ │ │ │ │ │ │ ├── region.test.js │ │ │ │ │ │ │ │ ├── select.test.js │ │ │ │ │ │ │ │ ├── single-checkbox-use-config.test.js │ │ │ │ │ │ │ │ ├── textarea.test.js │ │ │ │ │ │ │ │ └── url-input.test.js │ │ │ │ │ │ │ ├── form.test.js │ │ │ │ │ │ │ ├── provider.test.js │ │ │ │ │ │ │ └── ui-select.test.js │ │ │ │ │ │ │ ├── grid │ │ │ │ │ │ │ ├── columns │ │ │ │ │ │ │ │ ├── actions.test.js │ │ │ │ │ │ │ │ ├── column.test.js │ │ │ │ │ │ │ │ ├── date.test.js │ │ │ │ │ │ │ │ ├── expandable.test.js │ │ │ │ │ │ │ │ ├── image-preview.test.js │ │ │ │ │ │ │ │ ├── multiselect.test.js │ │ │ │ │ │ │ │ └── select.test.js │ │ │ │ │ │ │ ├── controls │ │ │ │ │ │ │ │ ├── bookmarks │ │ │ │ │ │ │ │ │ └── storage.test.js │ │ │ │ │ │ │ │ └── columns.test.js │ │ │ │ │ │ │ ├── data-storage.test.js │ │ │ │ │ │ │ ├── editing │ │ │ │ │ │ │ │ └── bulk.test.js │ │ │ │ │ │ │ ├── filters │ │ │ │ │ │ │ │ ├── filters.test.js │ │ │ │ │ │ │ │ └── range.test.js │ │ │ │ │ │ │ ├── masonry.test.js │ │ │ │ │ │ │ ├── paging │ │ │ │ │ │ │ │ └── paging.test.js │ │ │ │ │ │ │ ├── resize.test.js │ │ │ │ │ │ │ ├── search │ │ │ │ │ │ │ │ └── search.test.js │ │ │ │ │ │ │ ├── sortBy.test.js │ │ │ │ │ │ │ ├── sticky │ │ │ │ │ │ │ │ └── sticky.test.js │ │ │ │ │ │ │ ├── tree-massactions.test.js │ │ │ │ │ │ │ └── url-filter-applier.test.js │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── component │ │ │ │ │ │ │ │ └── links.test.js │ │ │ │ │ │ │ ├── events.test.js │ │ │ │ │ │ │ ├── ko │ │ │ │ │ │ │ │ └── bind │ │ │ │ │ │ │ │ │ ├── color-picker.test.js │ │ │ │ │ │ │ │ │ ├── datepicker.test.js │ │ │ │ │ │ │ │ │ └── i18n.test.js │ │ │ │ │ │ │ ├── logger │ │ │ │ │ │ │ │ ├── console-logger.test.js │ │ │ │ │ │ │ │ ├── console-output-handler.test.js │ │ │ │ │ │ │ │ ├── entry.test.js │ │ │ │ │ │ │ │ ├── formatter.test.js │ │ │ │ │ │ │ │ └── logger.test.js │ │ │ │ │ │ │ ├── registry │ │ │ │ │ │ │ │ └── registry.test.js │ │ │ │ │ │ │ └── validation │ │ │ │ │ │ │ │ └── rules.test.js │ │ │ │ │ │ │ ├── modal │ │ │ │ │ │ │ ├── alert.test.js │ │ │ │ │ │ │ ├── confirm.test.js │ │ │ │ │ │ │ ├── modal.test.js │ │ │ │ │ │ │ └── prompt.test.js │ │ │ │ │ │ │ └── timeline │ │ │ │ │ │ │ └── timeline.test.js │ │ │ │ │ └── frontend │ │ │ │ │ │ └── js │ │ │ │ │ │ └── model │ │ │ │ │ │ └── messages.test.js │ │ │ │ │ ├── Vault │ │ │ │ │ └── view │ │ │ │ │ │ └── frontend │ │ │ │ │ │ └── web │ │ │ │ │ │ └── js │ │ │ │ │ │ └── view │ │ │ │ │ │ └── payment │ │ │ │ │ │ └── method-renderer │ │ │ │ │ │ └── vault.test.js │ │ │ │ │ └── Wishlist │ │ │ │ │ └── view │ │ │ │ │ └── frontend │ │ │ │ │ └── web │ │ │ │ │ └── js │ │ │ │ │ └── add-to-wishlist.test.js │ │ │ │ └── lib │ │ │ │ └── mage │ │ │ │ ├── accordion.test.js │ │ │ │ ├── apply.test.js │ │ │ │ ├── backend │ │ │ │ ├── bootstrap.test.js │ │ │ │ ├── suggest.test.js │ │ │ │ └── tree-suggest.test.js │ │ │ │ ├── browser.test.js │ │ │ │ ├── calendar.test.js │ │ │ │ ├── collapsible.test.js │ │ │ │ ├── decorate.test.js │ │ │ │ ├── dropdown.test.js │ │ │ │ ├── form.test.js │ │ │ │ ├── gallery │ │ │ │ └── gallery.test.js │ │ │ │ ├── loader.test.js │ │ │ │ ├── menu.test.js │ │ │ │ ├── misc.test.js │ │ │ │ ├── multiselect.test.js │ │ │ │ ├── requirejs │ │ │ │ ├── mixins.test.js │ │ │ │ ├── static-jsbuild.test.js │ │ │ │ ├── static-text.test.js │ │ │ │ └── statistician.test.js │ │ │ │ ├── scripts.test.js │ │ │ │ ├── tabs.test.js │ │ │ │ ├── template.test.js │ │ │ │ ├── tinymce4Adapter.test.js │ │ │ │ ├── translate-inline.test.js │ │ │ │ ├── translate.test.js │ │ │ │ ├── validation.test.js │ │ │ │ └── wysiwygAdapter.test.js │ │ ├── setup-integration │ │ │ ├── .gitignore │ │ │ ├── _files │ │ │ │ └── Magento │ │ │ │ │ ├── TestSetupDeclarationModule1 │ │ │ │ │ ├── Setup │ │ │ │ │ │ └── InstallSchema.php │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ ├── db_schema_whitelist.json │ │ │ │ │ │ └── module.xml │ │ │ │ │ ├── fixture │ │ │ │ │ │ ├── declarative_installer │ │ │ │ │ │ │ ├── column_modification.php │ │ │ │ │ │ │ ├── column_removal.php │ │ │ │ │ │ │ ├── constraint_modification.mariadb10.php │ │ │ │ │ │ │ ├── constraint_modification.mysql8.php │ │ │ │ │ │ │ ├── constraint_modification.php │ │ │ │ │ │ │ ├── installation.php │ │ │ │ │ │ │ ├── rollback.mysql8.php │ │ │ │ │ │ │ ├── rollback.php │ │ │ │ │ │ │ ├── table_removal.mariadb10.php │ │ │ │ │ │ │ ├── table_removal.mysql8.php │ │ │ │ │ │ │ ├── table_removal.php │ │ │ │ │ │ │ └── table_rename.php │ │ │ │ │ │ ├── dry_run_log.php │ │ │ │ │ │ ├── dry_run_log_on_upgrade.php │ │ │ │ │ │ ├── foreign_key_interpreter_result.php │ │ │ │ │ │ └── valid_xml_revision_1.php │ │ │ │ │ ├── registration.php │ │ │ │ │ └── revisions │ │ │ │ │ │ ├── after_rollback │ │ │ │ │ │ └── db_schema.xml │ │ │ │ │ │ ├── base_update │ │ │ │ │ │ ├── InstallSchema.php │ │ │ │ │ │ └── db_schema.xml │ │ │ │ │ │ ├── before_rollback │ │ │ │ │ │ └── db_schema.xml │ │ │ │ │ │ ├── column_modifications │ │ │ │ │ │ └── db_schema.xml │ │ │ │ │ │ ├── column_removals │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ │ │ ├── constraint_modifications │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ │ │ ├── drop_table │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── module.xml │ │ │ │ │ │ ├── fail_on_column_declaration │ │ │ │ │ │ └── db_schema.xml │ │ │ │ │ │ ├── fail_on_unique_key_declaration │ │ │ │ │ │ └── db_schema.xml │ │ │ │ │ │ ├── foreign_key_interpreter │ │ │ │ │ │ └── db_schema.xml │ │ │ │ │ │ ├── index_to_disable │ │ │ │ │ │ └── db_schema.xml │ │ │ │ │ │ ├── old_diff │ │ │ │ │ │ ├── InstallSchema.php │ │ │ │ │ │ └── db_schema.xml │ │ │ │ │ │ ├── old_diff_before │ │ │ │ │ │ └── db_schema.xml │ │ │ │ │ │ ├── table_rename │ │ │ │ │ │ └── db_schema.xml │ │ │ │ │ │ ├── table_rename_after │ │ │ │ │ │ └── db_schema.xml │ │ │ │ │ │ ├── whitelist_upgrade │ │ │ │ │ │ └── db_schema.xml │ │ │ │ │ │ └── without_setup_version │ │ │ │ │ │ └── module.xml │ │ │ │ │ ├── TestSetupDeclarationModule2 │ │ │ │ │ ├── Setup │ │ │ │ │ │ └── InstallSchema.php │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ ├── db_schema_whitelist.json │ │ │ │ │ │ ├── di.xml │ │ │ │ │ │ └── module.xml │ │ │ │ │ ├── fixture │ │ │ │ │ │ ├── shards.mariadb10.php │ │ │ │ │ │ ├── shards.mysql8.php │ │ │ │ │ │ └── shards.php │ │ │ │ │ └── registration.php │ │ │ │ │ ├── TestSetupDeclarationModule3 │ │ │ │ │ ├── Setup │ │ │ │ │ │ ├── InstallData.php │ │ │ │ │ │ └── UpgradeData.php │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── module.xml │ │ │ │ │ ├── registration.php │ │ │ │ │ └── revisions │ │ │ │ │ │ ├── all_patches_revision │ │ │ │ │ │ └── module.xml │ │ │ │ │ │ ├── cyclomatic_and_bic_revision │ │ │ │ │ │ ├── BicPatch.php │ │ │ │ │ │ ├── RefBicPatch.php │ │ │ │ │ │ └── module.xml │ │ │ │ │ │ ├── drop_table_with_external_dependency │ │ │ │ │ │ └── db_schema.xml │ │ │ │ │ │ ├── first_patch_revision │ │ │ │ │ │ ├── UpgradeData.php │ │ │ │ │ │ └── module.xml │ │ │ │ │ │ ├── old_revision │ │ │ │ │ │ └── module.xml │ │ │ │ │ │ ├── patches_revision │ │ │ │ │ │ ├── IncrementalSomeIntegerPatch.php │ │ │ │ │ │ ├── LlNextChainPatch.php │ │ │ │ │ │ ├── NextChainPatch.php │ │ │ │ │ │ ├── ReferenceIncrementalSomeIntegerPatch.php │ │ │ │ │ │ └── ZFirstPatch.php │ │ │ │ │ │ └── without_setup_version │ │ │ │ │ │ └── module.xml │ │ │ │ │ ├── TestSetupDeclarationModule4 │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ ├── db_schema_whitelist.json │ │ │ │ │ │ └── module.xml │ │ │ │ │ ├── fixture │ │ │ │ │ │ └── safe_data_provider.php │ │ │ │ │ ├── registration.php │ │ │ │ │ └── revisions │ │ │ │ │ │ ├── remove_title_column │ │ │ │ │ │ └── db_schema.xml │ │ │ │ │ │ └── restore_title_column │ │ │ │ │ │ └── db_schema.xml │ │ │ │ │ ├── TestSetupDeclarationModule5 │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── module.xml │ │ │ │ │ ├── registration.php │ │ │ │ │ └── revisions │ │ │ │ │ │ ├── module-without-version │ │ │ │ │ │ └── module.xml │ │ │ │ │ │ ├── old-scripts │ │ │ │ │ │ └── UpgradeData.php │ │ │ │ │ │ └── patches │ │ │ │ │ │ ├── SomePatch.php │ │ │ │ │ │ └── SomeSkippedPatch.php │ │ │ │ │ ├── TestSetupDeclarationModule6 │ │ │ │ │ ├── etc │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ ├── db_schema_whitelist.json │ │ │ │ │ │ └── module.xml │ │ │ │ │ ├── registration.php │ │ │ │ │ └── revisions │ │ │ │ │ │ ├── remove_fk_declaration │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ │ │ └── restore_fk_declaration_to_wl │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ │ ├── TestSetupDeclarationModule7 │ │ │ │ │ ├── Setup │ │ │ │ │ │ ├── InstallSchema.php │ │ │ │ │ │ ├── UpgradeData.php │ │ │ │ │ │ └── UpgradeSchema.php │ │ │ │ │ ├── etc │ │ │ │ │ │ └── module.xml │ │ │ │ │ ├── registration.php │ │ │ │ │ └── revisions │ │ │ │ │ │ ├── swap_with_declaration │ │ │ │ │ │ ├── SomePatch.php │ │ │ │ │ │ ├── SomeSkippedPatch.php │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ └── module.xml │ │ │ │ │ │ ├── us_to_us │ │ │ │ │ │ ├── UpgradeData.php │ │ │ │ │ │ ├── UpgradeSchema.php │ │ │ │ │ │ └── module.xml │ │ │ │ │ │ └── wl_remove_table │ │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ │ ├── TestSetupDeclarationModule8 │ │ │ │ │ ├── etc │ │ │ │ │ │ └── module.xml │ │ │ │ │ ├── registration.php │ │ │ │ │ └── revisions │ │ │ │ │ │ ├── disable_index_by_external_module │ │ │ │ │ │ ├── db_schema.xml │ │ │ │ │ │ ├── db_schema_whitelist.json │ │ │ │ │ │ └── module.xml │ │ │ │ │ │ ├── disabling_tables │ │ │ │ │ │ └── db_schema.xml │ │ │ │ │ │ ├── incosistence_reference_definition │ │ │ │ │ │ └── db_schema.xml │ │ │ │ │ │ ├── invalid_auto_increment │ │ │ │ │ │ └── db_schema.xml │ │ │ │ │ │ ├── invalid_primary_key │ │ │ │ │ │ └── db_schema.xml │ │ │ │ │ │ ├── setup_install_with_converting │ │ │ │ │ │ ├── InstallSchema.php │ │ │ │ │ │ ├── UpgradeSchema.php │ │ │ │ │ │ └── module.xml │ │ │ │ │ │ ├── unpatterned_fk_name │ │ │ │ │ │ └── db_schema.xml │ │ │ │ │ │ └── whitelist_upgrade │ │ │ │ │ │ └── db_schema.xml │ │ │ │ │ └── TestSetupDeclarationModule9 │ │ │ │ │ ├── etc │ │ │ │ │ └── module.xml │ │ │ │ │ ├── fixture │ │ │ │ │ └── declarative_installer │ │ │ │ │ │ ├── disabling_tables.mariadb10.php │ │ │ │ │ │ ├── disabling_tables.mysql8.php │ │ │ │ │ │ └── disabling_tables.php │ │ │ │ │ ├── registration.php │ │ │ │ │ └── revisions │ │ │ │ │ ├── disabling_tables │ │ │ │ │ └── db_schema.xml │ │ │ │ │ └── setup_install_with_converting │ │ │ │ │ ├── InstallSchema.php │ │ │ │ │ ├── UpgradeSchema.php │ │ │ │ │ └── module.xml │ │ │ ├── etc │ │ │ │ ├── config-global.php.dist │ │ │ │ ├── di │ │ │ │ │ └── preferences │ │ │ │ │ │ └── cli │ │ │ │ │ │ └── ce.php │ │ │ │ └── install-config-mysql.php.dist │ │ │ ├── framework │ │ │ │ ├── Magento │ │ │ │ │ └── TestFramework │ │ │ │ │ │ ├── Annotation │ │ │ │ │ │ ├── CopyModules.php │ │ │ │ │ │ ├── DataProviderFromFile.php │ │ │ │ │ │ ├── ReinstallInstance.php │ │ │ │ │ │ └── SchemaFixture.php │ │ │ │ │ │ ├── App │ │ │ │ │ │ └── AreaList.php │ │ │ │ │ │ ├── Bootstrap │ │ │ │ │ │ └── SetupDocBlock.php │ │ │ │ │ │ ├── Deploy │ │ │ │ │ │ ├── CliCommand.php │ │ │ │ │ │ ├── DescribeTable.php │ │ │ │ │ │ ├── ParametersHolder.php │ │ │ │ │ │ ├── ShardingConfig.php │ │ │ │ │ │ ├── TableData.php │ │ │ │ │ │ └── TestModuleManager.php │ │ │ │ │ │ ├── Mview │ │ │ │ │ │ └── DummyTriggerCleaner.php │ │ │ │ │ │ ├── SetupApplication.php │ │ │ │ │ │ ├── TestCase │ │ │ │ │ │ ├── MutableDataInterface.php │ │ │ │ │ │ └── SetupTestCase.php │ │ │ │ │ │ └── Workaround │ │ │ │ │ │ ├── CacheClean.php │ │ │ │ │ │ └── DeploymentConfig.php │ │ │ │ ├── autoload.php │ │ │ │ ├── bootstrap.php │ │ │ │ ├── removeTestModules.php │ │ │ │ └── tests │ │ │ │ │ └── unit │ │ │ │ │ ├── framework │ │ │ │ │ └── bootstrap.php │ │ │ │ │ ├── phpunit.xml.dist │ │ │ │ │ └── testsuite │ │ │ │ │ └── Magento │ │ │ │ │ └── TestFramework │ │ │ │ │ └── Test │ │ │ │ │ └── Unit │ │ │ │ │ └── Annotation │ │ │ │ │ └── ReinstallInstanceTest.php │ │ │ ├── phpunit.xml.dist │ │ │ └── testsuite │ │ │ │ └── Magento │ │ │ │ ├── Developer │ │ │ │ ├── Console │ │ │ │ │ └── Command │ │ │ │ │ │ ├── SetupInstallTest.php │ │ │ │ │ │ ├── SetupUpgradeTest.php │ │ │ │ │ │ └── TablesWhitelistGenerateCommandTest.php │ │ │ │ └── _files │ │ │ │ │ ├── SetupInstall │ │ │ │ │ ├── TestSetupDeclarationModule8 │ │ │ │ │ │ └── db_schema.xml │ │ │ │ │ └── TestSetupDeclarationModule9 │ │ │ │ │ │ └── db_schema.xml │ │ │ │ │ ├── SetupUpgrade │ │ │ │ │ ├── TestSetupDeclarationModule8 │ │ │ │ │ │ ├── db_schema_install.xml │ │ │ │ │ │ └── db_schema_upgrade.xml │ │ │ │ │ └── TestSetupDeclarationModule9 │ │ │ │ │ │ ├── db_schema_install.xml │ │ │ │ │ │ └── db_schema_upgrade.xml │ │ │ │ │ └── WhitelistGenerate │ │ │ │ │ ├── TestSetupDeclarationModule1 │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ │ └── TestSetupDeclarationModule8 │ │ │ │ │ └── db_schema_whitelist.json │ │ │ │ └── Setup │ │ │ │ ├── BCMultiModuleTest.php │ │ │ │ ├── BCPatchTest.php │ │ │ │ ├── DataPatchInstallationTest.php │ │ │ │ ├── DeclarativeInstallerTest.php │ │ │ │ ├── DeclarativeSchemaBuilderTest.php │ │ │ │ ├── DiffOldSchemaTest.php │ │ │ │ ├── DryRunTest.php │ │ │ │ ├── SafeInstallerTest.php │ │ │ │ ├── SchemaReaderTest.php │ │ │ │ ├── ShardingTest.php │ │ │ │ └── ValidationRulesTest.php │ │ ├── static │ │ │ ├── .gitignore │ │ │ ├── framework │ │ │ │ ├── Magento │ │ │ │ │ ├── CodeMessDetector │ │ │ │ │ │ ├── Rule │ │ │ │ │ │ │ └── Design │ │ │ │ │ │ │ │ ├── AllPurposeAction.php │ │ │ │ │ │ │ │ └── CookieAndSessionMisuse.php │ │ │ │ │ │ ├── Test │ │ │ │ │ │ │ └── Unit │ │ │ │ │ │ │ │ └── Rule │ │ │ │ │ │ │ │ └── Design │ │ │ │ │ │ │ │ └── AllPurposeActionTest.php │ │ │ │ │ │ └── resources │ │ │ │ │ │ │ └── rulesets │ │ │ │ │ │ │ └── design.xml │ │ │ │ │ ├── PhpStan │ │ │ │ │ │ ├── Formatters │ │ │ │ │ │ │ └── FilteredErrorFormatter.php │ │ │ │ │ │ ├── Reflection │ │ │ │ │ │ │ └── Php │ │ │ │ │ │ │ │ ├── DataObjectClassReflectionExtension.php │ │ │ │ │ │ │ │ └── DataObjectMethodReflection.php │ │ │ │ │ │ └── autoload.php │ │ │ │ │ ├── Sniffs │ │ │ │ │ │ ├── Annotation │ │ │ │ │ │ │ ├── AnnotationFormatValidator.php │ │ │ │ │ │ │ ├── MethodAnnotationStructureSniff.php │ │ │ │ │ │ │ └── MethodArgumentsSniff.php │ │ │ │ │ │ ├── Html │ │ │ │ │ │ │ ├── HtmlBindingSniff.php │ │ │ │ │ │ │ └── HtmlDirectiveSniff.php │ │ │ │ │ │ └── Less │ │ │ │ │ │ │ ├── AvoidIdSniff.php │ │ │ │ │ │ │ ├── BracesFormattingSniff.php │ │ │ │ │ │ │ ├── ClassNamingSniff.php │ │ │ │ │ │ │ ├── ColonSpacingSniff.php │ │ │ │ │ │ │ ├── ColourDefinitionSniff.php │ │ │ │ │ │ │ ├── CombinatorIndentationSniff.php │ │ │ │ │ │ │ ├── CommentLevelsSniff.php │ │ │ │ │ │ │ ├── ImportantPropertySniff.php │ │ │ │ │ │ │ ├── IndentationSniff.php │ │ │ │ │ │ │ ├── PropertiesLineBreakSniff.php │ │ │ │ │ │ │ ├── PropertiesSortingSniff.php │ │ │ │ │ │ │ ├── QuotesSniff.php │ │ │ │ │ │ │ ├── SelectorDelimiterSniff.php │ │ │ │ │ │ │ ├── SemicolonSpacingSniff.php │ │ │ │ │ │ │ ├── TokenizerSymbolsInterface.php │ │ │ │ │ │ │ ├── TypeSelectorConcatenationSniff.php │ │ │ │ │ │ │ ├── TypeSelectorsSniff.php │ │ │ │ │ │ │ ├── VariablesSniff.php │ │ │ │ │ │ │ └── ZeroUnitsSniff.php │ │ │ │ │ ├── TestFramework │ │ │ │ │ │ ├── CodingStandard │ │ │ │ │ │ │ ├── Tool │ │ │ │ │ │ │ │ ├── BlacklistInterface.php │ │ │ │ │ │ │ │ ├── CodeMessDetector.php │ │ │ │ │ │ │ │ ├── CodeSniffer.php │ │ │ │ │ │ │ │ ├── CodeSniffer │ │ │ │ │ │ │ │ │ ├── GraphQlWrapper.php │ │ │ │ │ │ │ │ │ ├── HtmlWrapper.php │ │ │ │ │ │ │ │ │ ├── LessWrapper.php │ │ │ │ │ │ │ │ │ └── Wrapper.php │ │ │ │ │ │ │ │ ├── CompatibilityInterface.php │ │ │ │ │ │ │ │ ├── CopyPasteDetector.php │ │ │ │ │ │ │ │ ├── ExtensionInterface.php │ │ │ │ │ │ │ │ ├── PhpCompatibility.php │ │ │ │ │ │ │ │ └── PhpStan.php │ │ │ │ │ │ │ └── ToolInterface.php │ │ │ │ │ │ ├── Dependency │ │ │ │ │ │ │ ├── AnalyticsConfigRule.php │ │ │ │ │ │ │ ├── DbRule.php │ │ │ │ │ │ │ ├── DiRule.php │ │ │ │ │ │ │ ├── LayoutRule.php │ │ │ │ │ │ │ ├── PhpRule.php │ │ │ │ │ │ │ ├── Reader │ │ │ │ │ │ │ │ └── ClassScanner.php │ │ │ │ │ │ │ ├── ReportsConfigRule.php │ │ │ │ │ │ │ ├── Route │ │ │ │ │ │ │ │ └── RouteMapper.php │ │ │ │ │ │ │ ├── RuleInterface.php │ │ │ │ │ │ │ └── VirtualType │ │ │ │ │ │ │ │ └── VirtualTypeMapper.php │ │ │ │ │ │ ├── Exception │ │ │ │ │ │ │ └── NoSuchActionException.php │ │ │ │ │ │ ├── Inspection │ │ │ │ │ │ │ ├── AbstractCommand.php │ │ │ │ │ │ │ ├── Exception.php │ │ │ │ │ │ │ └── WordsFinder.php │ │ │ │ │ │ ├── Integrity │ │ │ │ │ │ │ ├── AbstractConfig.php │ │ │ │ │ │ │ ├── Library │ │ │ │ │ │ │ │ ├── Injectable.php │ │ │ │ │ │ │ │ └── PhpParser │ │ │ │ │ │ │ │ │ ├── DependenciesCollectorInterface.php │ │ │ │ │ │ │ │ │ ├── ParserFactory.php │ │ │ │ │ │ │ │ │ ├── ParserInterface.php │ │ │ │ │ │ │ │ │ ├── StaticCalls.php │ │ │ │ │ │ │ │ │ ├── Throws.php │ │ │ │ │ │ │ │ │ ├── Tokens.php │ │ │ │ │ │ │ │ │ └── Uses.php │ │ │ │ │ │ │ └── PluginValidator.php │ │ │ │ │ │ └── Utility │ │ │ │ │ │ │ ├── AddedFiles.php │ │ │ │ │ │ │ ├── AutogeneratedClassNotInConstructorFinder.php │ │ │ │ │ │ │ ├── ChangedFiles.php │ │ │ │ │ │ │ ├── ChildrenClassesSearch.php │ │ │ │ │ │ │ ├── ClassNameExtractor.php │ │ │ │ │ │ │ ├── CodeCheck.php │ │ │ │ │ │ │ ├── File │ │ │ │ │ │ │ └── RegexIteratorFactory.php │ │ │ │ │ │ │ ├── FilesSearch.php │ │ │ │ │ │ │ └── FunctionDetector.php │ │ │ │ │ └── ruleset.xml │ │ │ │ ├── autoload.php │ │ │ │ ├── bootstrap.php │ │ │ │ └── tests │ │ │ │ │ └── unit │ │ │ │ │ ├── phpunit.xml.dist │ │ │ │ │ └── testsuite │ │ │ │ │ └── Magento │ │ │ │ │ ├── PhpStan │ │ │ │ │ ├── Formatters │ │ │ │ │ │ ├── FilteredErrorFormatterTest.php │ │ │ │ │ │ └── Fixtures │ │ │ │ │ │ │ ├── ClassWithIgnoreAnnotation.php │ │ │ │ │ │ │ └── ClassWithoutIgnoreAnnotation.php │ │ │ │ │ └── Reflection │ │ │ │ │ │ └── DataObject │ │ │ │ │ │ ├── Fixtures │ │ │ │ │ │ ├── ClassWithCorrectUsageOfDataObject.php │ │ │ │ │ │ ├── ClassWithIncorrectUsageOfDataObject.php │ │ │ │ │ │ ├── ClassWithSessionManagerUsage.php │ │ │ │ │ │ └── config.neon │ │ │ │ │ │ └── MagicMethodsTest.php │ │ │ │ │ ├── Sniffs │ │ │ │ │ ├── Annotation │ │ │ │ │ │ ├── MethodAnnotationStructureSniffTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── MethodAnnotationFixture.php │ │ │ │ │ │ │ └── method_annotation_errors.txt │ │ │ │ │ ├── Html │ │ │ │ │ │ ├── AbstractHtmlSniffTest.php │ │ │ │ │ │ ├── HtmlBindingSniffTest.php │ │ │ │ │ │ ├── HtmlDirectiveSniffTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── ruleset.xml │ │ │ │ │ │ │ ├── test-html-binding-errors.txt │ │ │ │ │ │ │ ├── test-html-binding.html │ │ │ │ │ │ │ ├── test-html-directive-errors.txt │ │ │ │ │ │ │ ├── test-html-directive-invalid-json-errors.txt │ │ │ │ │ │ │ ├── test-html-directive-invalid-json.html │ │ │ │ │ │ │ └── test-html-directive.html │ │ │ │ │ └── Less │ │ │ │ │ │ ├── AvoidIdSniffTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ ├── avoid-ids-errors.txt │ │ │ │ │ │ └── avoid-ids.less │ │ │ │ │ ├── Test │ │ │ │ │ ├── Integrity │ │ │ │ │ │ └── Library │ │ │ │ │ │ │ ├── InjectableTest.php │ │ │ │ │ │ │ └── PhpParser │ │ │ │ │ │ │ ├── ParserFactoryTest.php │ │ │ │ │ │ │ ├── StaticCallsTest.php │ │ │ │ │ │ │ ├── ThrowsTest.php │ │ │ │ │ │ │ ├── TokensTest.php │ │ │ │ │ │ │ └── UsesTest.php │ │ │ │ │ └── Utility │ │ │ │ │ │ └── File │ │ │ │ │ │ ├── CodeCheckTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ ├── class_name_in_namespace_and_variable_name.txt │ │ │ │ │ │ ├── create_new_instance.txt │ │ │ │ │ │ ├── create_new_instance2.txt │ │ │ │ │ │ ├── create_new_instance3.txt │ │ │ │ │ │ ├── extends.txt │ │ │ │ │ │ ├── extends2.txt │ │ │ │ │ │ ├── implements.txt │ │ │ │ │ │ ├── implements2.txt │ │ │ │ │ │ ├── use.txt │ │ │ │ │ │ └── use2.txt │ │ │ │ │ └── TestFramework │ │ │ │ │ ├── CodingStandard │ │ │ │ │ └── Tool │ │ │ │ │ │ ├── CodeMessDetectorTest.php │ │ │ │ │ │ ├── CodeSniffer │ │ │ │ │ │ └── WrapperTest.php │ │ │ │ │ │ └── CodeSnifferTest.php │ │ │ │ │ ├── Dependency │ │ │ │ │ ├── DbRuleTest.php │ │ │ │ │ ├── DiRuleTest.php │ │ │ │ │ ├── LayoutRuleTest.php │ │ │ │ │ ├── PhpRuleTest.php │ │ │ │ │ ├── VirtualType │ │ │ │ │ │ ├── VirtualTypeMapperTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── etc │ │ │ │ │ │ │ ├── adminhtml │ │ │ │ │ │ │ └── di.xml │ │ │ │ │ │ │ └── di.xml │ │ │ │ │ └── _files │ │ │ │ │ │ ├── di_external_dependency.xml │ │ │ │ │ │ ├── di_in_module_dependency.xml │ │ │ │ │ │ ├── di_no_dependency.xml │ │ │ │ │ │ ├── di_virtual_dependency.xml │ │ │ │ │ │ ├── layout_handle.xml │ │ │ │ │ │ ├── layout_handle_parent.xml │ │ │ │ │ │ ├── layout_handle_update.xml │ │ │ │ │ │ └── layout_reference.xml │ │ │ │ │ ├── Inspection │ │ │ │ │ ├── WordsFinderTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── broken_config.xml │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ ├── config_additional.xml │ │ │ │ │ │ ├── empty_whitelist_path.xml │ │ │ │ │ │ ├── empty_words_config.xml │ │ │ │ │ │ └── words_finder │ │ │ │ │ │ ├── buffy.php │ │ │ │ │ │ ├── buffy.zip │ │ │ │ │ │ ├── interview_with_the_vampire.php │ │ │ │ │ │ ├── interview_with_the_vampire.zip │ │ │ │ │ │ ├── self_tested_config.xml │ │ │ │ │ │ └── twilight │ │ │ │ │ │ ├── eclipse.php │ │ │ │ │ │ └── newmoon.php │ │ │ │ │ └── Utility │ │ │ │ │ ├── AutogeneratedClassNotInConstructorFinderTest.php │ │ │ │ │ ├── Bar.php │ │ │ │ │ ├── ChildrenClassesSearch │ │ │ │ │ ├── A.php │ │ │ │ │ ├── B.php │ │ │ │ │ ├── C.php │ │ │ │ │ ├── D.php │ │ │ │ │ ├── E.php │ │ │ │ │ ├── F.php │ │ │ │ │ └── ZInterface.php │ │ │ │ │ ├── ChildrenClassesSearchTest.php │ │ │ │ │ ├── ClassNameExtractorTest.php │ │ │ │ │ ├── FilesSearchTest.php │ │ │ │ │ ├── Foo.php │ │ │ │ │ ├── FunctionDetectorTest.php │ │ │ │ │ ├── PartialNamespace │ │ │ │ │ └── Bar.php │ │ │ │ │ └── _files │ │ │ │ │ ├── changed_files_some_name_test.txt │ │ │ │ │ ├── class_implements_interface.txt │ │ │ │ │ ├── class_with_comment.txt │ │ │ │ │ ├── class_with_namespace.txt │ │ │ │ │ ├── class_without_namespace.txt │ │ │ │ │ ├── extra_whitespaces.txt │ │ │ │ │ ├── implements_keyword_on_different_line.txt │ │ │ │ │ ├── missing_class_keyword.txt │ │ │ │ │ └── test.txt │ │ │ ├── get_github_changes.php │ │ │ ├── phpunit-all.xml.dist │ │ │ ├── phpunit.xml.dist │ │ │ └── testsuite │ │ │ │ └── Magento │ │ │ │ └── Test │ │ │ │ ├── GraphQl │ │ │ │ └── LiveCodeTest.php │ │ │ │ ├── Html │ │ │ │ ├── LiveCodeTest.php │ │ │ │ └── _files │ │ │ │ │ ├── html │ │ │ │ │ └── ruleset.xml │ │ │ │ │ └── whitelist │ │ │ │ │ └── common.txt │ │ │ │ ├── Integrity │ │ │ │ ├── App │ │ │ │ │ └── Language │ │ │ │ │ │ ├── CircularDependencyTest.php │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ ├── TranslationFiles.php │ │ │ │ │ │ ├── TranslationFilesTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ ├── known_invalid.xml │ │ │ │ │ │ └── known_valid.xml │ │ │ │ ├── CircularDependencyTest.php │ │ │ │ ├── ClassesTest.php │ │ │ │ ├── ComposerLockTest.php │ │ │ │ ├── ComposerTest.php │ │ │ │ ├── ConfigTest.php │ │ │ │ ├── DeclarativeDependencyTest.php │ │ │ │ ├── Dependency │ │ │ │ │ ├── Converter.php │ │ │ │ │ ├── DeclarativeSchemaDependencyProvider.php │ │ │ │ │ ├── DependencyProvider.php │ │ │ │ │ ├── GraphQlSchemaDependencyProvider.php │ │ │ │ │ ├── SchemaLocator.php │ │ │ │ │ └── WebapiFileResolver.php │ │ │ │ ├── DependencyTest.php │ │ │ │ ├── Di │ │ │ │ │ └── CompilerTest.php │ │ │ │ ├── GraphQlDependencyTest.php │ │ │ │ ├── Layout │ │ │ │ │ ├── BlockNamesTest.php │ │ │ │ │ ├── BlocksTest.php │ │ │ │ │ ├── HandlesTest.php │ │ │ │ │ ├── TemplatesTest.php │ │ │ │ │ └── ThemeHandlesTest.php │ │ │ │ ├── Library │ │ │ │ │ ├── DependencyTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ └── blacklist.txt │ │ │ │ ├── Magento │ │ │ │ │ ├── Backend │ │ │ │ │ │ ├── ControllerAclTest.php │ │ │ │ │ │ ├── SystemConfigTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── controller_acl_test_whitelist_ce.txt │ │ │ │ │ ├── Core │ │ │ │ │ │ └── Model │ │ │ │ │ │ │ └── Fieldset │ │ │ │ │ │ │ ├── FieldsetConfigTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── fieldset.xml │ │ │ │ │ │ │ ├── fieldset_file.xml │ │ │ │ │ │ │ └── invalid_fieldset.xml │ │ │ │ │ ├── Framework │ │ │ │ │ │ ├── Api │ │ │ │ │ │ │ ├── ExtensibleInterfacesTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ └── ExtensibleInterfacesTest │ │ │ │ │ │ │ │ └── blacklist_ce.txt │ │ │ │ │ │ ├── Cache │ │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ ├── invalidCacheConfigXmlArray.php │ │ │ │ │ │ │ │ └── valid_cache_config.xml │ │ │ │ │ │ └── Search │ │ │ │ │ │ │ ├── RequestConfigTest.php │ │ │ │ │ │ │ ├── SearchEngineConfigTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── request │ │ │ │ │ │ │ ├── invalid.xml │ │ │ │ │ │ │ ├── invalid_partial.xml │ │ │ │ │ │ │ ├── valid.xml │ │ │ │ │ │ │ └── valid_partial.xml │ │ │ │ │ │ │ └── search_engine │ │ │ │ │ │ │ ├── invalid.xml │ │ │ │ │ │ │ └── valid.xml │ │ │ │ │ ├── Indexer │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── invalid.xml │ │ │ │ │ │ │ ├── valid.xml │ │ │ │ │ │ │ └── valid_partial.xml │ │ │ │ │ ├── Payment │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ └── ReferentialTest.php │ │ │ │ │ │ └── Model │ │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── invalid_payment.xml │ │ │ │ │ │ │ ├── invalid_payment_partial.xml │ │ │ │ │ │ │ ├── payment.xml │ │ │ │ │ │ │ └── payment_partial.xml │ │ │ │ │ ├── Persistent │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── invalid_persistent.xml │ │ │ │ │ │ │ └── valid_persistent.xml │ │ │ │ │ ├── Webapi │ │ │ │ │ │ └── Model │ │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── invalid_webapi.xml │ │ │ │ │ │ │ ├── partial_invalid_webapi.xml │ │ │ │ │ │ │ ├── partial_webapi.xml │ │ │ │ │ │ │ └── webapi.xml │ │ │ │ │ └── Widget │ │ │ │ │ │ ├── WidgetConfigTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ ├── invalid_widget.xml │ │ │ │ │ │ ├── widget.xml │ │ │ │ │ │ └── widget_file.xml │ │ │ │ ├── ObserverImplementationTest.php │ │ │ │ ├── Phrase │ │ │ │ │ ├── AbstractTestCase.php │ │ │ │ │ ├── ArgumentsTest.php │ │ │ │ │ └── Legacy │ │ │ │ │ │ └── SignatureTest.php │ │ │ │ ├── PublicCodeTest.php │ │ │ │ ├── Readme │ │ │ │ │ ├── ReadmeTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ ├── blacklist │ │ │ │ │ │ └── ce.txt │ │ │ │ │ │ └── scan_list.txt │ │ │ │ ├── TestPlacementTest.php │ │ │ │ ├── Xml │ │ │ │ │ └── SchemaTest.php │ │ │ │ └── _files │ │ │ │ │ ├── blacklist │ │ │ │ │ ├── composer_module_names.txt │ │ │ │ │ ├── exception_hierarchy.txt │ │ │ │ │ ├── external_dependency │ │ │ │ │ │ └── ce.php │ │ │ │ │ ├── observers.txt │ │ │ │ │ ├── reference.txt │ │ │ │ │ └── undeclared_dependency │ │ │ │ │ │ └── ce.php │ │ │ │ │ ├── dependency_test │ │ │ │ │ └── whitelist │ │ │ │ │ │ ├── redundant_dependencies_security.php │ │ │ │ │ │ ├── redundant_dependencies_webapi.php │ │ │ │ │ │ └── routes_ce.php │ │ │ │ │ └── whitelist │ │ │ │ │ └── public_code.txt │ │ │ │ ├── Js │ │ │ │ └── _files │ │ │ │ │ ├── blacklist │ │ │ │ │ └── magento.txt │ │ │ │ │ ├── eslint │ │ │ │ │ ├── .eslintrc │ │ │ │ │ ├── .eslintrc-magento │ │ │ │ │ └── .eslintrc-reset │ │ │ │ │ ├── jscs │ │ │ │ │ └── .jscsrc │ │ │ │ │ └── whitelist │ │ │ │ │ └── magento.txt │ │ │ │ ├── Legacy │ │ │ │ ├── AutogeneratedClassNotInConstructorTest.php │ │ │ │ ├── ClassesTest.php │ │ │ │ ├── CodingStandardsIgnoreAnnotationUsageTest.php │ │ │ │ ├── ConfigTest.php │ │ │ │ ├── CopyrightTest.php │ │ │ │ ├── EmailTemplateTest.php │ │ │ │ ├── InstallUpgradeTest.php │ │ │ │ ├── LayoutTest.php │ │ │ │ ├── LibraryLocationTest.php │ │ │ │ ├── LicenseTest.php │ │ │ │ ├── Magento │ │ │ │ │ ├── Core │ │ │ │ │ │ └── Block │ │ │ │ │ │ │ └── AbstractBlockTest.php │ │ │ │ │ ├── Framework │ │ │ │ │ │ ├── App │ │ │ │ │ │ │ └── Action │ │ │ │ │ │ │ │ └── AbstractActionTest.php │ │ │ │ │ │ ├── Module │ │ │ │ │ │ │ └── ModuleXMLTest.php │ │ │ │ │ │ └── ObjectManager │ │ │ │ │ │ │ └── DiConfigTest.php │ │ │ │ │ └── Widget │ │ │ │ │ │ └── XmlTest.php │ │ │ │ ├── ModuleDBChangeTest.php │ │ │ │ ├── ObsoleteAclTest.php │ │ │ │ ├── ObsoleteCodeTest.php │ │ │ │ ├── ObsoleteConnectionTest.php │ │ │ │ ├── ObsoleteMenuTest.php │ │ │ │ ├── ObsoleteResponseTest.php │ │ │ │ ├── ObsoleteSystemConfigurationTest.php │ │ │ │ ├── ObsoleteThemeLocalXmlTest.php │ │ │ │ ├── PhtmlTemplateTest.php │ │ │ │ ├── RestrictedCodeTest.php │ │ │ │ ├── TableTest.php │ │ │ │ ├── UnsecureFunctionsUsageTest.php │ │ │ │ ├── WordsTest.php │ │ │ │ └── _files │ │ │ │ │ ├── autogenerated_class_not_in_constructor_whitelist.php │ │ │ │ │ ├── blacklist │ │ │ │ │ └── obsolete_mage.php │ │ │ │ │ ├── connection │ │ │ │ │ ├── blacklist │ │ │ │ │ │ └── files_list.php │ │ │ │ │ └── whitelist │ │ │ │ │ │ └── refactored_modules.php │ │ │ │ │ ├── copyright │ │ │ │ │ └── blacklist.php │ │ │ │ │ ├── obsolete_classes.php │ │ │ │ │ ├── obsolete_config_nodes.php │ │ │ │ │ ├── obsolete_constants.php │ │ │ │ │ ├── obsolete_methods.php │ │ │ │ │ ├── obsolete_namespaces.php │ │ │ │ │ ├── obsolete_paths.php │ │ │ │ │ ├── obsolete_properties.php │ │ │ │ │ ├── response │ │ │ │ │ ├── blacklist │ │ │ │ │ │ └── files_list.php │ │ │ │ │ ├── obsolete_response_methods.php │ │ │ │ │ └── whitelist │ │ │ │ │ │ └── refactored_modules.php │ │ │ │ │ ├── restricted_classes.php │ │ │ │ │ ├── security │ │ │ │ │ └── whitelist.txt │ │ │ │ │ └── words_ce.xml │ │ │ │ ├── Less │ │ │ │ ├── LiveCodeTest.php │ │ │ │ └── _files │ │ │ │ │ ├── blacklist │ │ │ │ │ └── old.txt │ │ │ │ │ ├── lesscs │ │ │ │ │ └── ruleset.xml │ │ │ │ │ └── whitelist │ │ │ │ │ └── common.txt │ │ │ │ ├── Php │ │ │ │ ├── LiveCodeTest.php │ │ │ │ └── _files │ │ │ │ │ ├── PHPCompatibilityMagento │ │ │ │ │ └── ruleset.xml │ │ │ │ │ ├── blacklist │ │ │ │ │ └── strict_type.txt │ │ │ │ │ ├── phpcpd │ │ │ │ │ └── blacklist │ │ │ │ │ │ └── common.txt │ │ │ │ │ ├── phpmd │ │ │ │ │ └── ruleset.xml │ │ │ │ │ ├── phpstan │ │ │ │ │ ├── blacklist │ │ │ │ │ │ └── common.txt │ │ │ │ │ └── phpstan.neon │ │ │ │ │ └── whitelist │ │ │ │ │ └── common.txt │ │ │ │ ├── Tools │ │ │ │ └── Composer │ │ │ │ │ └── RootComposerMappingTest.php │ │ │ │ └── _files │ │ │ │ └── .gitignore │ │ └── unit │ │ │ ├── .gitignore │ │ │ ├── framework │ │ │ ├── autoload.php │ │ │ └── bootstrap.php │ │ │ ├── phpunit.xml.dist │ │ │ └── tmp │ │ │ └── .gitignore │ └── tools │ │ ├── bootstrap.php │ │ ├── dynamicReturnTypeMeta.json │ │ └── grunt │ │ ├── assets │ │ └── legacy-build │ │ │ └── shim.js │ │ ├── configs │ │ ├── autoprefixer.json │ │ ├── clean.js │ │ ├── combo.js │ │ ├── concat.json │ │ ├── cssmin.json │ │ ├── eslint.json │ │ ├── exec.js │ │ ├── imagemin.js │ │ ├── jscs.json │ │ ├── less.js │ │ ├── mage-minify.json │ │ ├── path.js │ │ ├── replace.js │ │ ├── styledocco.json │ │ ├── themes.js │ │ ├── usebanner.js │ │ └── watch.js │ │ ├── tasks │ │ ├── black-list-generator.js │ │ ├── clean-black-list.js │ │ ├── deploy.js │ │ ├── mage-minify.js │ │ └── static.js │ │ └── tools │ │ ├── collect-validation-files.js │ │ ├── files-router.js │ │ └── fs-tools.js ├── generated │ └── .htaccess ├── grunt-config.json.sample ├── index.php ├── lib │ ├── .htaccess │ ├── internal │ │ ├── GnuFreeFont │ │ │ ├── FreeSerif.ttf │ │ │ ├── FreeSerifBold.ttf │ │ │ └── FreeSerifItalic.ttf │ │ └── LinLibertineFont │ │ │ ├── Bugs │ │ │ ├── ChangeLog.txt │ │ │ ├── GPL.txt │ │ │ ├── LICENCE.txt │ │ │ ├── LinLibertineC_Re-2.8.0.ttf │ │ │ ├── LinLibertine_Bd-2.8.1.ttf │ │ │ ├── LinLibertine_It-2.8.2.ttf │ │ │ ├── LinLibertine_Re-4.4.1.ttf │ │ │ ├── OFL.txt │ │ │ ├── Readme │ │ │ └── Readme-TEX.txt │ └── web │ │ ├── FormData.js │ │ ├── MutationObserver.js │ │ ├── blank.html │ │ ├── chartjs │ │ └── Chart.min.js │ │ ├── css │ │ ├── docs │ │ │ ├── actions-toolbar.html │ │ │ ├── breadcrumbs.html │ │ │ ├── buttons.html │ │ │ ├── components.html │ │ │ ├── docs.css │ │ │ ├── docs.html │ │ │ ├── dropdowns.html │ │ │ ├── forms.html │ │ │ ├── icons.html │ │ │ ├── index.html │ │ │ ├── layout.html │ │ │ ├── lib.html │ │ │ ├── loaders.html │ │ │ ├── messages.html │ │ │ ├── pages.html │ │ │ ├── popups.html │ │ │ ├── rating.html │ │ │ ├── resets.html │ │ │ ├── responsive.html │ │ │ ├── sections.html │ │ │ ├── source │ │ │ │ ├── README.md │ │ │ │ ├── _actions-toolbar.less │ │ │ │ ├── _breadcrumbs.less │ │ │ │ ├── _buttons.less │ │ │ │ ├── _components.less │ │ │ │ ├── _dropdowns.less │ │ │ │ ├── _forms.less │ │ │ │ ├── _icons.less │ │ │ │ ├── _layout.less │ │ │ │ ├── _lib.less │ │ │ │ ├── _loaders.less │ │ │ │ ├── _messages.less │ │ │ │ ├── _pages.less │ │ │ │ ├── _popups.less │ │ │ │ ├── _rating.less │ │ │ │ ├── _resets.less │ │ │ │ ├── _responsive.less │ │ │ │ ├── _sections.less │ │ │ │ ├── _tables.less │ │ │ │ ├── _tooltips.less │ │ │ │ ├── _typography.less │ │ │ │ ├── _utilities.less │ │ │ │ ├── _variables.less │ │ │ │ ├── docs.less │ │ │ │ └── js │ │ │ │ │ └── dropdown.js │ │ │ ├── tables.html │ │ │ ├── tooltips.html │ │ │ ├── typography.html │ │ │ ├── utilities.html │ │ │ └── variables.html │ │ └── source │ │ │ ├── _email-variables.less │ │ │ ├── _extend.less │ │ │ ├── _theme.less │ │ │ ├── _variables.less │ │ │ ├── _widgets.less │ │ │ ├── components │ │ │ └── _modals.less │ │ │ └── lib │ │ │ ├── _actions-toolbar.less │ │ │ ├── _breadcrumbs.less │ │ │ ├── _buttons.less │ │ │ ├── _dropdowns.less │ │ │ ├── _forms.less │ │ │ ├── _grids.less │ │ │ ├── _icons.less │ │ │ ├── _layout.less │ │ │ ├── _lib.less │ │ │ ├── _loaders.less │ │ │ ├── _messages.less │ │ │ ├── _navigation.less │ │ │ ├── _pages.less │ │ │ ├── _popups.less │ │ │ ├── _rating.less │ │ │ ├── _resets.less │ │ │ ├── _responsive.less │ │ │ ├── _sections.less │ │ │ ├── _tables.less │ │ │ ├── _tooltips.less │ │ │ ├── _typography.less │ │ │ ├── _utilities.less │ │ │ ├── _variables.less │ │ │ └── variables │ │ │ ├── _actions-toolbar.less │ │ │ ├── _breadcrumbs.less │ │ │ ├── _buttons.less │ │ │ ├── _colors.less │ │ │ ├── _components.less │ │ │ ├── _dropdowns.less │ │ │ ├── _email.less │ │ │ ├── _forms.less │ │ │ ├── _icons.less │ │ │ ├── _layout.less │ │ │ ├── _loaders.less │ │ │ ├── _messages.less │ │ │ ├── _navigation.less │ │ │ ├── _pages.less │ │ │ ├── _popups.less │ │ │ ├── _rating.less │ │ │ ├── _responsive.less │ │ │ ├── _sections.less │ │ │ ├── _structure.less │ │ │ ├── _tables.less │ │ │ ├── _tooltips.less │ │ │ └── _typography.less │ │ ├── es6-collections.js │ │ ├── extjs │ │ ├── defaults.js │ │ ├── ext-tree-checkbox.js │ │ ├── ext-tree.js │ │ └── resources │ │ │ ├── css │ │ │ ├── README.txt │ │ │ ├── ext-all.css │ │ │ └── ytheme-magento.css │ │ │ └── images │ │ │ ├── aero │ │ │ ├── basic-dialog │ │ │ │ ├── aero-close-over.gif │ │ │ │ ├── aero-close.gif │ │ │ │ ├── bg-center.gif │ │ │ │ ├── bg-left.gif │ │ │ │ ├── bg-right.gif │ │ │ │ ├── close.gif │ │ │ │ ├── collapse-over.gif │ │ │ │ ├── collapse.gif │ │ │ │ ├── e-handle.gif │ │ │ │ ├── expand-over.gif │ │ │ │ ├── expand.gif │ │ │ │ ├── hd-sprite.gif │ │ │ │ ├── s-handle.gif │ │ │ │ ├── se-handle.gif │ │ │ │ └── w-handle.gif │ │ │ ├── gradient-bg.gif │ │ │ ├── grid │ │ │ │ ├── grid-blue-split.gif │ │ │ │ ├── grid-hrow.gif │ │ │ │ ├── grid-split.gif │ │ │ │ ├── grid-vista-hd.gif │ │ │ │ ├── pspbrwse.jbf │ │ │ │ ├── sort-col-bg.gif │ │ │ │ ├── sort_asc.gif │ │ │ │ └── sort_desc.gif │ │ │ ├── layout │ │ │ │ ├── collapse.gif │ │ │ │ ├── expand.gif │ │ │ │ ├── gradient-bg.gif │ │ │ │ ├── ns-collapse.gif │ │ │ │ ├── ns-expand.gif │ │ │ │ ├── panel-close.gif │ │ │ │ ├── panel-title-bg.gif │ │ │ │ ├── panel-title-light-bg.gif │ │ │ │ ├── tab-close-on.gif │ │ │ │ └── tab-close.gif │ │ │ ├── menu │ │ │ │ ├── checked.gif │ │ │ │ ├── item-over.gif │ │ │ │ ├── menu.gif │ │ │ │ └── unchecked.gif │ │ │ ├── qtip │ │ │ │ └── bg.gif │ │ │ ├── s.gif │ │ │ ├── sizer │ │ │ │ ├── e-handle-dark.gif │ │ │ │ ├── e-handle.gif │ │ │ │ ├── ne-handle-dark.gif │ │ │ │ ├── ne-handle.gif │ │ │ │ ├── nw-handle-dark.gif │ │ │ │ ├── nw-handle.gif │ │ │ │ ├── s-handle-dark.gif │ │ │ │ ├── s-handle.gif │ │ │ │ ├── se-handle-dark.gif │ │ │ │ ├── se-handle.gif │ │ │ │ ├── sw-handle-dark.gif │ │ │ │ └── sw-handle.gif │ │ │ ├── tabs │ │ │ │ ├── tab-btm-inactive-left-bg.gif │ │ │ │ ├── tab-btm-inactive-right-bg.gif │ │ │ │ ├── tab-btm-left-bg.gif │ │ │ │ ├── tab-btm-right-bg.gif │ │ │ │ ├── tab-sprite.gif │ │ │ │ ├── tab-strip-bg.gif │ │ │ │ ├── tab-strip-bg.png │ │ │ │ └── tab-strip-btm-bg.gif │ │ │ └── toolbar │ │ │ │ ├── bg.gif │ │ │ │ └── tb-btn-sprite.gif │ │ │ ├── default │ │ │ ├── basic-dialog │ │ │ │ ├── btn-arrow.gif │ │ │ │ ├── btn-sprite.gif │ │ │ │ ├── close.gif │ │ │ │ ├── collapse.gif │ │ │ │ ├── e-handle.gif │ │ │ │ ├── expand.gif │ │ │ │ ├── hd-sprite.gif │ │ │ │ ├── progress.gif │ │ │ │ ├── progress2.gif │ │ │ │ ├── s-handle.gif │ │ │ │ └── se-handle.gif │ │ │ ├── box │ │ │ │ ├── corners-blue.gif │ │ │ │ ├── corners.gif │ │ │ │ ├── l-blue.gif │ │ │ │ ├── l.gif │ │ │ │ ├── r-blue.gif │ │ │ │ ├── r.gif │ │ │ │ ├── tb-blue.gif │ │ │ │ └── tb.gif │ │ │ ├── dd │ │ │ │ ├── drop-add.gif │ │ │ │ ├── drop-no.gif │ │ │ │ └── drop-yes.gif │ │ │ ├── editor │ │ │ │ └── tb-sprite.gif │ │ │ ├── form │ │ │ │ ├── clear-trigger.gif │ │ │ │ ├── date-trigger.gif │ │ │ │ ├── error-tip-corners.gif │ │ │ │ ├── exclamation.gif │ │ │ │ ├── search-trigger.gif │ │ │ │ ├── text-bg.gif │ │ │ │ ├── trigger-tpl.gif │ │ │ │ └── trigger.gif │ │ │ ├── gradient-bg.gif │ │ │ ├── grid │ │ │ │ ├── arrow-left-white.gif │ │ │ │ ├── arrow-right-white.gif │ │ │ │ ├── col-move-bottom.gif │ │ │ │ ├── col-move-top.gif │ │ │ │ ├── dirty.gif │ │ │ │ ├── done.gif │ │ │ │ ├── drop-no.gif │ │ │ │ ├── drop-yes.gif │ │ │ │ ├── footer-bg.gif │ │ │ │ ├── grid-blue-hd.gif │ │ │ │ ├── grid-blue-split.gif │ │ │ │ ├── grid-hrow.gif │ │ │ │ ├── grid-loading.gif │ │ │ │ ├── grid-split.gif │ │ │ │ ├── grid-vista-hd.gif │ │ │ │ ├── grid3-hd-btn.gif │ │ │ │ ├── grid3-hrow-over.gif │ │ │ │ ├── grid3-hrow.gif │ │ │ │ ├── grid3-special-col-bg.gif │ │ │ │ ├── grid3-special-col-sel-bg.gif │ │ │ │ ├── hd-pop.gif │ │ │ │ ├── hmenu-asc.gif │ │ │ │ ├── hmenu-desc.gif │ │ │ │ ├── hmenu-lock.gif │ │ │ │ ├── hmenu-lock.png │ │ │ │ ├── hmenu-unlock.gif │ │ │ │ ├── hmenu-unlock.png │ │ │ │ ├── invalid_line.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── mso-hd.gif │ │ │ │ ├── nowait.gif │ │ │ │ ├── page-first-disabled.gif │ │ │ │ ├── page-first.gif │ │ │ │ ├── page-last-disabled.gif │ │ │ │ ├── page-last.gif │ │ │ │ ├── page-next-disabled.gif │ │ │ │ ├── page-next.gif │ │ │ │ ├── page-prev-disabled.gif │ │ │ │ ├── page-prev.gif │ │ │ │ ├── pick-button.gif │ │ │ │ ├── refresh.gif │ │ │ │ ├── row-check-sprite.gif │ │ │ │ ├── row-expand-sprite.gif │ │ │ │ ├── row-over.gif │ │ │ │ ├── row-sel.gif │ │ │ │ ├── sort_asc.gif │ │ │ │ ├── sort_desc.gif │ │ │ │ └── wait.gif │ │ │ ├── layout │ │ │ │ ├── collapse.gif │ │ │ │ ├── expand.gif │ │ │ │ ├── gradient-bg.gif │ │ │ │ ├── ns-collapse.gif │ │ │ │ ├── ns-expand.gif │ │ │ │ ├── panel-close.gif │ │ │ │ ├── panel-title-bg.gif │ │ │ │ ├── panel-title-light-bg.gif │ │ │ │ ├── stick.gif │ │ │ │ ├── stuck.gif │ │ │ │ ├── tab-close-on.gif │ │ │ │ └── tab-close.gif │ │ │ ├── menu │ │ │ │ ├── checked.gif │ │ │ │ ├── group-checked.gif │ │ │ │ ├── menu-parent.gif │ │ │ │ ├── menu.gif │ │ │ │ └── unchecked.gif │ │ │ ├── panel │ │ │ │ ├── corners-sprite.gif │ │ │ │ ├── left-right.gif │ │ │ │ ├── tool-sprite-tpl.gif │ │ │ │ ├── tool-sprites.gif │ │ │ │ ├── top-bottom.gif │ │ │ │ ├── white-corners-sprite.gif │ │ │ │ ├── white-left-right.gif │ │ │ │ └── white-top-bottom.gif │ │ │ ├── qtip │ │ │ │ ├── bg.gif │ │ │ │ ├── close.gif │ │ │ │ └── tip-sprite.gif │ │ │ ├── s.gif │ │ │ ├── shadow-c.png │ │ │ ├── shadow-lr.png │ │ │ ├── shadow.png │ │ │ ├── shared │ │ │ │ ├── calendar.gif │ │ │ │ ├── glass-bg.gif │ │ │ │ ├── left-btn.gif │ │ │ │ ├── right-btn.gif │ │ │ │ └── warning.gif │ │ │ ├── sizer │ │ │ │ ├── e-handle-dark.gif │ │ │ │ ├── e-handle.gif │ │ │ │ ├── ne-handle-dark.gif │ │ │ │ ├── ne-handle.gif │ │ │ │ ├── nw-handle-dark.gif │ │ │ │ ├── nw-handle.gif │ │ │ │ ├── s-handle-dark.gif │ │ │ │ ├── s-handle.gif │ │ │ │ ├── se-handle-dark.gif │ │ │ │ ├── se-handle.gif │ │ │ │ ├── square.gif │ │ │ │ ├── sw-handle-dark.gif │ │ │ │ └── sw-handle.gif │ │ │ ├── tabs │ │ │ │ ├── tab-btm-inactive-left-bg.gif │ │ │ │ ├── tab-btm-inactive-right-bg.gif │ │ │ │ ├── tab-btm-left-bg.gif │ │ │ │ ├── tab-btm-right-bg.gif │ │ │ │ └── tab-sprite.gif │ │ │ ├── toolbar │ │ │ │ ├── btn-arrow-light.gif │ │ │ │ ├── btn-arrow.gif │ │ │ │ ├── btn-over-bg.gif │ │ │ │ ├── gray-bg.gif │ │ │ │ ├── tb-bg.gif │ │ │ │ └── tb-btn-sprite.gif │ │ │ ├── tree │ │ │ │ ├── drop-add.gif │ │ │ │ ├── drop-between.gif │ │ │ │ ├── drop-no.gif │ │ │ │ ├── drop-over.gif │ │ │ │ ├── drop-under.gif │ │ │ │ ├── drop-yes.gif │ │ │ │ ├── elbow-end-minus-nl.gif │ │ │ │ ├── elbow-end-minus.gif │ │ │ │ ├── elbow-end-plus-nl.gif │ │ │ │ ├── elbow-end-plus.gif │ │ │ │ ├── elbow-end.gif │ │ │ │ ├── elbow-line.gif │ │ │ │ ├── elbow-minus-nl.gif │ │ │ │ ├── elbow-minus.gif │ │ │ │ ├── elbow-plus-nl.gif │ │ │ │ ├── elbow-plus.gif │ │ │ │ ├── elbow.gif │ │ │ │ ├── folder-open.gif │ │ │ │ ├── folder.gif │ │ │ │ ├── leaf.gif │ │ │ │ ├── loading.gif │ │ │ │ └── s.gif │ │ │ └── window │ │ │ │ ├── corners-sprite.gif │ │ │ │ ├── left-right.gif │ │ │ │ └── top-bottom.gif │ │ │ ├── galdaka │ │ │ ├── basic-dialog │ │ │ │ ├── close-over.gif │ │ │ │ ├── close.gif │ │ │ │ ├── collapse-over.gif │ │ │ │ ├── collapse.gif │ │ │ │ ├── e-handle.gif │ │ │ │ ├── expand-over.gif │ │ │ │ ├── expand.gif │ │ │ │ ├── gradient-bg.gif │ │ │ │ ├── hd-sprite.gif │ │ │ │ ├── s-handle.gif │ │ │ │ ├── se-handle.gif │ │ │ │ └── sw-handle.gif │ │ │ ├── form │ │ │ │ ├── choose-trigger.gif │ │ │ │ ├── date-trigger.gif │ │ │ │ └── trigger.gif │ │ │ ├── grid │ │ │ │ ├── col-move-bottom.gif │ │ │ │ ├── col-move-top.gif │ │ │ │ ├── done.gif │ │ │ │ ├── fondoCabeceraHover.gif │ │ │ │ ├── grid-hrow.gif │ │ │ │ ├── loading.gif │ │ │ │ ├── page-first.gif │ │ │ │ ├── page-last.gif │ │ │ │ ├── page-next.gif │ │ │ │ └── page-prev.gif │ │ │ ├── layout │ │ │ │ ├── collapse.gif │ │ │ │ ├── e-handle.gif │ │ │ │ ├── expand.gif │ │ │ │ ├── gradient-bg.gif │ │ │ │ ├── ns-collapse.gif │ │ │ │ ├── ns-expand.gif │ │ │ │ ├── panel-close.gif │ │ │ │ ├── panel-title-light-bg.gif │ │ │ │ ├── s-handle.gif │ │ │ │ ├── stick.gif │ │ │ │ ├── tab-close-on.gif │ │ │ │ └── tab-close.gif │ │ │ ├── menu │ │ │ │ ├── checked.gif │ │ │ │ ├── group-checked.gif │ │ │ │ ├── menu-parent.gif │ │ │ │ ├── menu.gif │ │ │ │ └── unchecked.gif │ │ │ ├── qtip │ │ │ │ └── tip-sprite.gif │ │ │ ├── shared │ │ │ │ ├── left-btn.gif │ │ │ │ └── right-btn.gif │ │ │ ├── sizer │ │ │ │ ├── ne-handle.gif │ │ │ │ ├── nw-handle.gif │ │ │ │ ├── s-handle.gif │ │ │ │ ├── se-handle.gif │ │ │ │ └── sw-handle.gif │ │ │ ├── tabs │ │ │ │ ├── tab-btm-inactive-left-bg.gif │ │ │ │ ├── tab-btm-inactive-right-bg.gif │ │ │ │ ├── tab-btm-left-bg.gif │ │ │ │ ├── tab-btm-right-bg.gif │ │ │ │ └── tab-sprite.gif │ │ │ └── toolbar │ │ │ │ ├── btn-arrow.gif │ │ │ │ ├── btn-over-bg.gif │ │ │ │ ├── fondoToolbar.gif │ │ │ │ └── tb-btn-sprite.gif │ │ │ ├── gray │ │ │ ├── basic-dialog │ │ │ │ ├── close.gif │ │ │ │ ├── collapse.gif │ │ │ │ ├── dlg-bg.gif │ │ │ │ ├── e-handle.gif │ │ │ │ ├── expand.gif │ │ │ │ ├── hd-sprite.gif │ │ │ │ ├── s-handle.gif │ │ │ │ └── se-handle.gif │ │ │ ├── gradient-bg.gif │ │ │ ├── grid │ │ │ │ └── grid-hrow.gif │ │ │ ├── layout │ │ │ │ ├── collapse.gif │ │ │ │ ├── expand.gif │ │ │ │ ├── gradient-bg.gif │ │ │ │ ├── ns-collapse.gif │ │ │ │ ├── ns-expand.gif │ │ │ │ ├── panel-close.gif │ │ │ │ ├── panel-title-bg.gif │ │ │ │ ├── panel-title-light-bg.gif │ │ │ │ ├── stick.gif │ │ │ │ ├── tab-close-on.gif │ │ │ │ └── tab-close.gif │ │ │ ├── menu │ │ │ │ ├── checked.gif │ │ │ │ ├── group-checked.gif │ │ │ │ ├── menu-parent.gif │ │ │ │ ├── menu.gif │ │ │ │ └── unchecked.gif │ │ │ ├── qtip │ │ │ │ ├── bg.gif │ │ │ │ └── tip-sprite.gif │ │ │ ├── s.gif │ │ │ ├── sizer │ │ │ │ ├── e-handle-dark.gif │ │ │ │ ├── e-handle.gif │ │ │ │ ├── ne-handle-dark.gif │ │ │ │ ├── ne-handle.gif │ │ │ │ ├── nw-handle-dark.gif │ │ │ │ ├── nw-handle.gif │ │ │ │ ├── s-handle-dark.gif │ │ │ │ ├── s-handle.gif │ │ │ │ ├── se-handle-dark.gif │ │ │ │ ├── se-handle.gif │ │ │ │ ├── sw-handle-dark.gif │ │ │ │ └── sw-handle.gif │ │ │ ├── tabs │ │ │ │ ├── tab-btm-inactive-left-bg.gif │ │ │ │ ├── tab-btm-inactive-right-bg.gif │ │ │ │ ├── tab-btm-left-bg.gif │ │ │ │ ├── tab-btm-right-bg.gif │ │ │ │ └── tab-sprite.gif │ │ │ └── toolbar │ │ │ │ ├── gray-bg.gif │ │ │ │ └── tb-btn-sprite.gif │ │ │ ├── magento │ │ │ ├── basic-dialog │ │ │ │ ├── collapse-on.gif │ │ │ │ ├── collapse.gif │ │ │ │ ├── expand-on.gif │ │ │ │ ├── expand.gif │ │ │ │ ├── hd-sprite.gif │ │ │ │ ├── ns-collapse-on.gif │ │ │ │ ├── ns-collapse.gif │ │ │ │ ├── ns-expand-on.gif │ │ │ │ ├── ns-expand.gif │ │ │ │ ├── panel_close.gif │ │ │ │ ├── pop_close.gif │ │ │ │ └── pop_collapse.gif │ │ │ ├── grid │ │ │ │ ├── grid-body-bg.gif │ │ │ │ └── grid-split.gif │ │ │ ├── layout │ │ │ │ ├── checkered-bg.gif │ │ │ │ ├── icon-catalog.gif │ │ │ │ ├── icon-category.gif │ │ │ │ ├── icon-my-tasks.gif │ │ │ │ └── icon-product.gif │ │ │ ├── loading_bg.gif │ │ │ ├── tabs │ │ │ │ └── tab-sprite.gif │ │ │ ├── toolbar │ │ │ │ ├── btn-arrow.gif │ │ │ │ ├── header_bg.gif │ │ │ │ └── toolbar-bg.gif │ │ │ └── tree │ │ │ │ ├── elbow-end-minus-nl.gif │ │ │ │ ├── elbow-end-minus.gif │ │ │ │ ├── elbow-end-plus-nl.gif │ │ │ │ ├── elbow-end-plus.gif │ │ │ │ ├── elbow-end.gif │ │ │ │ ├── elbow-line.gif │ │ │ │ ├── elbow-minus-nl.gif │ │ │ │ ├── elbow-minus.gif │ │ │ │ ├── elbow-plus-nl.gif │ │ │ │ ├── elbow-plus.gif │ │ │ │ ├── elbow.gif │ │ │ │ ├── folder-open.gif │ │ │ │ ├── folder.gif │ │ │ │ ├── leaf.gif │ │ │ │ └── s.gif │ │ │ └── vista │ │ │ ├── basic-dialog │ │ │ ├── bg-center.gif │ │ │ ├── bg-left.gif │ │ │ ├── bg-right.gif │ │ │ ├── close.gif │ │ │ ├── collapse.gif │ │ │ ├── dlg-bg.gif │ │ │ ├── e-handle.gif │ │ │ ├── expand.gif │ │ │ ├── hd-sprite.gif │ │ │ ├── s-handle.gif │ │ │ ├── se-handle.gif │ │ │ └── w-handle.gif │ │ │ ├── gradient-bg.gif │ │ │ ├── grid │ │ │ ├── grid-split.gif │ │ │ └── grid-vista-hd.gif │ │ │ ├── layout │ │ │ ├── collapse.gif │ │ │ ├── expand.gif │ │ │ ├── gradient-bg.gif │ │ │ ├── ns-collapse.gif │ │ │ ├── ns-expand.gif │ │ │ ├── panel-close.gif │ │ │ ├── panel-title-bg.gif │ │ │ ├── panel-title-light-bg.gif │ │ │ ├── stick.gif │ │ │ ├── tab-close-on.gif │ │ │ └── tab-close.gif │ │ │ ├── qtip │ │ │ ├── bg.gif │ │ │ └── tip-sprite.gif │ │ │ ├── s.gif │ │ │ ├── sizer │ │ │ ├── e-handle-dark.gif │ │ │ ├── e-handle.gif │ │ │ ├── ne-handle-dark.gif │ │ │ ├── ne-handle.gif │ │ │ ├── nw-handle-dark.gif │ │ │ ├── nw-handle.gif │ │ │ ├── s-handle-dark.gif │ │ │ ├── s-handle.gif │ │ │ ├── se-handle-dark.gif │ │ │ ├── se-handle.gif │ │ │ ├── sw-handle-dark.gif │ │ │ └── sw-handle.gif │ │ │ ├── tabs │ │ │ ├── tab-btm-inactive-left-bg.gif │ │ │ ├── tab-btm-inactive-right-bg.gif │ │ │ ├── tab-btm-left-bg.gif │ │ │ ├── tab-btm-right-bg.gif │ │ │ └── tab-sprite.gif │ │ │ └── toolbar │ │ │ ├── gray-bg.gif │ │ │ └── tb-btn-sprite.gif │ │ ├── fonts │ │ ├── Blank-Theme-Icons │ │ │ ├── Blank-Theme-Icons.woff │ │ │ ├── Blank-Theme-Icons.woff2 │ │ │ └── selection.json │ │ ├── MUI-Icons │ │ │ ├── MUI-Icons.woff │ │ │ └── MUI-Icons.woff2 │ │ ├── UX-Icons │ │ │ └── UX-Icons.woff │ │ └── opensans │ │ │ ├── bold │ │ │ ├── opensans-700.woff │ │ │ └── opensans-700.woff2 │ │ │ ├── light │ │ │ ├── opensans-300.woff │ │ │ └── opensans-300.woff2 │ │ │ ├── regular │ │ │ ├── opensans-400.woff │ │ │ └── opensans-400.woff2 │ │ │ └── semibold │ │ │ ├── opensans-600.woff │ │ │ └── opensans-600.woff2 │ │ ├── fotorama │ │ └── fotorama.js │ │ ├── i18n │ │ └── en_US.csv │ │ ├── images │ │ ├── bkg_gallery_thumbs.png │ │ ├── blank-theme-icons.png │ │ ├── cards.png │ │ ├── debug_bkg.png │ │ ├── loader-1.gif │ │ ├── loader-2.gif │ │ ├── logo.svg │ │ ├── magento-logo.svg │ │ ├── spacer.gif │ │ ├── sprite-gallery.png │ │ └── sprite-gallery.svg │ │ ├── jquery.js │ │ ├── jquery │ │ ├── colorpicker │ │ │ ├── css │ │ │ │ └── colorpicker.css │ │ │ ├── images │ │ │ │ ├── blank.gif │ │ │ │ ├── colorpicker_background.png │ │ │ │ ├── colorpicker_hex.png │ │ │ │ ├── colorpicker_hsb_b.png │ │ │ │ ├── colorpicker_hsb_h.png │ │ │ │ ├── colorpicker_hsb_s.png │ │ │ │ ├── colorpicker_indic.gif │ │ │ │ ├── colorpicker_overlay.png │ │ │ │ ├── colorpicker_rgb_b.png │ │ │ │ ├── colorpicker_rgb_g.png │ │ │ │ ├── colorpicker_rgb_r.png │ │ │ │ ├── colorpicker_select.gif │ │ │ │ ├── colorpicker_submit.png │ │ │ │ ├── custom_background.png │ │ │ │ ├── custom_hex.png │ │ │ │ ├── custom_hsb_b.png │ │ │ │ ├── custom_hsb_h.png │ │ │ │ ├── custom_hsb_s.png │ │ │ │ ├── custom_indic.gif │ │ │ │ ├── custom_rgb_b.png │ │ │ │ ├── custom_rgb_g.png │ │ │ │ ├── custom_rgb_r.png │ │ │ │ ├── custom_submit.png │ │ │ │ ├── select.png │ │ │ │ ├── select2.png │ │ │ │ └── slider.png │ │ │ └── js │ │ │ │ └── colorpicker.js │ │ ├── compat.js │ │ ├── editableMultiselect │ │ │ ├── css │ │ │ │ └── jquery.multiselect.css │ │ │ └── js │ │ │ │ ├── jquery.editable.js │ │ │ │ └── jquery.multiselect.js │ │ ├── fileUploader │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── cors │ │ │ │ ├── jquery.postmessage-transport.js │ │ │ │ └── jquery.xdr-transport.js │ │ │ ├── css │ │ │ │ ├── jquery.fileupload-noscript.css │ │ │ │ ├── jquery.fileupload-ui-noscript.css │ │ │ │ ├── jquery.fileupload-ui.css │ │ │ │ └── jquery.fileupload.css │ │ │ ├── img │ │ │ │ ├── loading.gif │ │ │ │ └── progressbar.gif │ │ │ ├── jquery.fileupload-audio.js │ │ │ ├── jquery.fileupload-image.js │ │ │ ├── jquery.fileupload-process.js │ │ │ ├── jquery.fileupload-ui.js │ │ │ ├── jquery.fileupload-validate.js │ │ │ ├── jquery.fileupload-video.js │ │ │ ├── jquery.fileupload.js │ │ │ ├── jquery.fileuploader.js │ │ │ ├── jquery.iframe-transport.js │ │ │ └── vendor │ │ │ │ ├── blueimp-canvas-to-blob │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ └── js │ │ │ │ │ └── canvas-to-blob.js │ │ │ │ ├── blueimp-load-image │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ └── js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── load-image-exif-map.js │ │ │ │ │ ├── load-image-exif.js │ │ │ │ │ ├── load-image-fetch.js │ │ │ │ │ ├── load-image-iptc-map.js │ │ │ │ │ ├── load-image-iptc.js │ │ │ │ │ ├── load-image-meta.js │ │ │ │ │ ├── load-image-orientation.js │ │ │ │ │ ├── load-image-scale.js │ │ │ │ │ └── load-image.js │ │ │ │ ├── blueimp-tmpl │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ └── js │ │ │ │ │ ├── compile.js │ │ │ │ │ ├── runtime.js │ │ │ │ │ └── tmpl.js │ │ │ │ └── jquery.ui.widget.js │ │ ├── jquery-migrate.js │ │ ├── jquery-ui-1.9.2.js │ │ ├── jquery-ui-timepicker-addon.js │ │ ├── jquery-ui.js │ │ ├── jquery.cookie.js │ │ ├── jquery.details.js │ │ ├── jquery.hoverIntent.js │ │ ├── jquery.metadata.js │ │ ├── jquery.min.js │ │ ├── jquery.mobile.custom.js │ │ ├── jquery.parsequery.js │ │ ├── jquery.storageapi.min.js │ │ ├── jquery.tabs.js │ │ ├── jquery.validate.js │ │ ├── jstree │ │ │ ├── jquery.hotkeys.js │ │ │ ├── jquery.jstree.js │ │ │ └── themes │ │ │ │ ├── apple │ │ │ │ ├── bg.jpg │ │ │ │ ├── d.png │ │ │ │ ├── dot_for_ie.gif │ │ │ │ ├── style.css │ │ │ │ └── throbber.gif │ │ │ │ ├── classic │ │ │ │ ├── d.gif │ │ │ │ ├── d.png │ │ │ │ ├── dot_for_ie.gif │ │ │ │ ├── style.css │ │ │ │ └── throbber.gif │ │ │ │ ├── default-rtl │ │ │ │ ├── d.gif │ │ │ │ ├── d.png │ │ │ │ ├── dots.gif │ │ │ │ ├── style.css │ │ │ │ └── throbber.gif │ │ │ │ └── default │ │ │ │ ├── d.gif │ │ │ │ ├── d.png │ │ │ │ ├── style.css │ │ │ │ └── throbber.gif │ │ ├── patches │ │ │ ├── jquery-ui.js │ │ │ └── jquery.js │ │ ├── spectrum │ │ │ ├── spectrum.js │ │ │ └── tinycolor.js │ │ └── ui-modules │ │ │ ├── accordion.js │ │ │ ├── autocomplete.js │ │ │ ├── button.js │ │ │ ├── core.js │ │ │ ├── datepicker.js │ │ │ ├── dialog.js │ │ │ ├── draggable.js │ │ │ ├── droppable.js │ │ │ ├── effect-blind.js │ │ │ ├── effect-bounce.js │ │ │ ├── effect-clip.js │ │ │ ├── effect-drop.js │ │ │ ├── effect-explode.js │ │ │ ├── effect-fade.js │ │ │ ├── effect-fold.js │ │ │ ├── effect-highlight.js │ │ │ ├── effect-pulsate.js │ │ │ ├── effect-scale.js │ │ │ ├── effect-shake.js │ │ │ ├── effect-slide.js │ │ │ ├── effect-transfer.js │ │ │ ├── effect.js │ │ │ ├── menu.js │ │ │ ├── mouse.js │ │ │ ├── position.js │ │ │ ├── progressbar.js │ │ │ ├── resizable.js │ │ │ ├── selectable.js │ │ │ ├── slider.js │ │ │ ├── sortable.js │ │ │ ├── spinner.js │ │ │ ├── tabs.js │ │ │ ├── timepicker.js │ │ │ ├── tooltip.js │ │ │ └── widget.js │ │ ├── knockoutjs │ │ ├── knockout-es5.js │ │ ├── knockout-fast-foreach.js │ │ ├── knockout-repeat.js │ │ └── knockout.js │ │ ├── legacy-build.min.js │ │ ├── less │ │ ├── config.less.js │ │ └── less.min.js │ │ ├── lib │ │ ├── ccard.js │ │ └── storage.js │ │ ├── mage │ │ ├── accordion.js │ │ ├── adminhtml │ │ │ ├── accordion.js │ │ │ ├── backup.js │ │ │ ├── browser.js │ │ │ ├── events.js │ │ │ ├── form.js │ │ │ ├── globals.js │ │ │ ├── grid.js │ │ │ ├── tools.js │ │ │ ├── varienLoader.js │ │ │ └── wysiwyg │ │ │ │ ├── events.js │ │ │ │ ├── tiny_mce │ │ │ │ ├── html5-schema.js │ │ │ │ ├── plugins │ │ │ │ │ ├── magentovariable │ │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ │ └── img │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ └── magentowidget │ │ │ │ │ │ ├── editor_plugin.js │ │ │ │ │ │ └── img │ │ │ │ │ │ └── icon.png │ │ │ │ ├── setup.js │ │ │ │ ├── themes │ │ │ │ │ ├── advanced │ │ │ │ │ │ └── skins │ │ │ │ │ │ │ └── default │ │ │ │ │ │ │ ├── content.css │ │ │ │ │ │ │ └── dialog.css │ │ │ │ │ └── ui.css │ │ │ │ └── tinymce4Adapter.js │ │ │ │ └── widget.js │ │ ├── app │ │ │ └── config.js │ │ ├── apply │ │ │ ├── main.js │ │ │ └── scripts.js │ │ ├── backend │ │ │ ├── action-link.js │ │ │ ├── bootstrap.js │ │ │ ├── button.js │ │ │ ├── editablemultiselect.js │ │ │ ├── floating-header.js │ │ │ ├── form.js │ │ │ ├── jstree-mixin.js │ │ │ ├── menu.js │ │ │ ├── notification.js │ │ │ ├── suggest.js │ │ │ ├── tabs.js │ │ │ ├── tree-suggest.js │ │ │ └── validation.js │ │ ├── bootstrap.js │ │ ├── calendar.css │ │ ├── calendar.js │ │ ├── captcha.js │ │ ├── collapsible.js │ │ ├── common.js │ │ ├── cookies.js │ │ ├── dataPost.js │ │ ├── decorate.js │ │ ├── deletable-item.js │ │ ├── dialog.js │ │ ├── dropdown.js │ │ ├── dropdown_old.js │ │ ├── dropdowns.js │ │ ├── edit-trigger.js │ │ ├── fieldset-controls.js │ │ ├── gallery │ │ │ ├── gallery.html │ │ │ ├── gallery.js │ │ │ ├── gallery.less │ │ │ ├── gallery.png │ │ │ └── module │ │ │ │ ├── _extends.less │ │ │ │ ├── _focus.less │ │ │ │ ├── _fullscreen.less │ │ │ │ ├── _mixins.less │ │ │ │ └── _variables.less │ │ ├── ie-class-fixer.js │ │ ├── item-table.js │ │ ├── layout.js │ │ ├── list.js │ │ ├── loader.js │ │ ├── loader_old.js │ │ ├── mage.js │ │ ├── menu.js │ │ ├── msie │ │ │ └── file-reader.js │ │ ├── multiselect.html │ │ ├── multiselect.js │ │ ├── polyfill.js │ │ ├── popup-window.js │ │ ├── redirect-url.js │ │ ├── requirejs │ │ │ ├── baseUrlResolver.js │ │ │ ├── mixins.js │ │ │ ├── resolver.js │ │ │ ├── static.js │ │ │ └── text.js │ │ ├── smart-keyboard-handler.js │ │ ├── sticky.js │ │ ├── storage.js │ │ ├── tabs.js │ │ ├── template.js │ │ ├── terms.js │ │ ├── toggle.js │ │ ├── tooltip.js │ │ ├── touch-slider.js │ │ ├── translate-inline-vde.css │ │ ├── translate-inline-vde.js │ │ ├── translate-inline.css │ │ ├── translate-inline.js │ │ ├── translate.js │ │ ├── trim-input.js │ │ ├── url.js │ │ ├── utils │ │ │ ├── arrays.js │ │ │ ├── compare.js │ │ │ ├── main.js │ │ │ ├── misc.js │ │ │ ├── objects.js │ │ │ ├── strings.js │ │ │ ├── template.js │ │ │ └── wrapper.js │ │ ├── validation.js │ │ ├── validation │ │ │ ├── url.js │ │ │ └── validation.js │ │ ├── view │ │ │ └── composite.js │ │ ├── webapi.js │ │ └── zoom.js │ │ ├── magnifier │ │ ├── magnifier.js │ │ └── magnify.js │ │ ├── matchMedia.js │ │ ├── modernizr │ │ ├── modernizr.2.0.6.js │ │ ├── modernizr.details.js │ │ └── modernizr.js │ │ ├── moment-timezone-with-data.js │ │ ├── moment.js │ │ ├── prototype │ │ ├── prototype-amd.js │ │ ├── prototype.js │ │ ├── validation.js │ │ ├── window.js │ │ ├── window_readme.txt │ │ └── windows │ │ │ ├── MIT-LICENSE │ │ │ ├── README │ │ │ └── themes │ │ │ ├── alert.css │ │ │ ├── alert │ │ │ ├── bottom.gif │ │ │ ├── bottom_left.gif │ │ │ ├── bottom_right.gif │ │ │ ├── left.gif │ │ │ ├── overlay.png │ │ │ ├── progress.gif │ │ │ ├── right.gif │ │ │ ├── top.gif │ │ │ ├── top_left.gif │ │ │ └── top_right.gif │ │ │ ├── alert_lite.css │ │ │ ├── alphacube.css │ │ │ ├── alphacube │ │ │ ├── bottom-left-c.gif │ │ │ ├── bottom-middle.gif │ │ │ ├── bottom-right-c.gif │ │ │ ├── button-close-focus.gif │ │ │ ├── button-max-focus.gif │ │ │ ├── button-min-focus.gif │ │ │ ├── frame-left.gif │ │ │ ├── frame-right.gif │ │ │ ├── left-top.gif │ │ │ ├── right-top.gif │ │ │ └── top-middle.gif │ │ │ ├── behavior.htc │ │ │ ├── darkX.css │ │ │ ├── darkX │ │ │ ├── button-close-focused.png │ │ │ ├── button-maximize-focused.png │ │ │ ├── button-minimize-focused.png │ │ │ ├── frame-bottom-left-focused.png │ │ │ ├── frame-bottom-mid-focused.png │ │ │ ├── frame-bottom-right-focused.png │ │ │ ├── frame-left-focused.png │ │ │ ├── frame-right-focused.png │ │ │ ├── titlebar-left-focused.png │ │ │ ├── titlebar-mid-focused.png │ │ │ └── titlebar-right-focused.png │ │ │ ├── debug.css │ │ │ ├── default.css │ │ │ ├── default │ │ │ ├── bottom_left.gif │ │ │ ├── bottom_mid.gif │ │ │ ├── bottom_right.gif │ │ │ ├── bottom_right_resize.gif │ │ │ ├── center_left.gif │ │ │ ├── center_right.gif │ │ │ ├── clear.gif │ │ │ ├── close.gif │ │ │ ├── inspect.gif │ │ │ ├── maximize.gif │ │ │ ├── minimize.gif │ │ │ ├── overlay.png │ │ │ ├── resize.gif │ │ │ ├── sizer.gif │ │ │ ├── top_left.gif │ │ │ ├── top_mid.gif │ │ │ └── top_right.gif │ │ │ ├── iefix │ │ │ ├── blank.gif │ │ │ ├── iepngfix.css │ │ │ └── iepngfix.htc │ │ │ ├── lighting.css │ │ │ ├── lighting │ │ │ ├── background_buttons.gif │ │ │ ├── bottom-left-blue.png │ │ │ ├── bottom-left-darkblue.png │ │ │ ├── bottom-left-green.png │ │ │ ├── bottom-left-grey.png │ │ │ ├── bottom-middle-blue.png │ │ │ ├── bottom-middle-darkblue.png │ │ │ ├── bottom-middle-green.png │ │ │ ├── bottom-middle-grey.png │ │ │ ├── bottom-right-blue.png │ │ │ ├── bottom-right-darkblue.png │ │ │ ├── bottom-right-green.png │ │ │ ├── bottom-right-grey.png │ │ │ ├── button-close-blue.png │ │ │ ├── button-close-darkblue.png │ │ │ ├── button-close-green.png │ │ │ ├── button-close-grey.png │ │ │ ├── button-maximize-blue.png │ │ │ ├── button-maximize-darkblue.png │ │ │ ├── button-maximize-green.png │ │ │ ├── button-maximize-grey.png │ │ │ ├── button-minimize-blue.png │ │ │ ├── button-minimize-darkblue.png │ │ │ ├── button-minimize-green.png │ │ │ ├── button-minimize-grey.png │ │ │ ├── left-blue.png │ │ │ ├── left-darkblue.png │ │ │ ├── left-green.png │ │ │ ├── left-grey.png │ │ │ ├── pngbehavior.htc │ │ │ ├── right-blue.png │ │ │ ├── right-darkblue.png │ │ │ ├── right-green.png │ │ │ ├── right-grey.png │ │ │ ├── spinner.gif │ │ │ ├── top-left-blue.png │ │ │ ├── top-left-darkblue.png │ │ │ ├── top-left-green.png │ │ │ ├── top-left-grey.png │ │ │ ├── top-middle-blue.png │ │ │ ├── top-middle-darkblue.png │ │ │ ├── top-middle-green.png │ │ │ ├── top-middle-grey.png │ │ │ ├── top-right-blue.png │ │ │ ├── top-right-darkblue.png │ │ │ ├── top-right-green.png │ │ │ └── top-right-grey.png │ │ │ ├── mac_os_x.css │ │ │ ├── mac_os_x_dialog.css │ │ │ ├── nuncio.css │ │ │ ├── nuncio │ │ │ ├── bottom_left.png │ │ │ ├── bottom_mid.png │ │ │ ├── bottom_right.png │ │ │ ├── center_left.png │ │ │ ├── center_right.png │ │ │ ├── close.png │ │ │ ├── minimize.png │ │ │ ├── overlay.png │ │ │ ├── top_left.png │ │ │ ├── top_mid.png │ │ │ └── top_right.png │ │ │ ├── spread.css │ │ │ └── spread │ │ │ ├── .gif │ │ │ ├── bottom-left-c.gif │ │ │ ├── bottom-middle.gif │ │ │ ├── bottom-right-c.gif │ │ │ ├── button-close-focus.gif │ │ │ ├── button-max-focus.gif │ │ │ ├── button-min-focus.gif │ │ │ ├── frame-left.gif │ │ │ ├── frame-right.gif │ │ │ ├── left-top.gif │ │ │ ├── right-top.gif │ │ │ └── top-middle.gif │ │ ├── requirejs │ │ ├── domReady.js │ │ ├── require.js │ │ └── text.js │ │ ├── scriptaculous │ │ ├── builder.js │ │ └── effects.js │ │ ├── spacer.gif │ │ ├── tiny_mce_4 │ │ ├── jquery.tinymce.min.js │ │ ├── langs │ │ │ └── readme.md │ │ ├── license.txt │ │ ├── plugins │ │ │ ├── advlist │ │ │ │ └── plugin.min.js │ │ │ ├── anchor │ │ │ │ └── plugin.min.js │ │ │ ├── autolink │ │ │ │ └── plugin.min.js │ │ │ ├── autoresize │ │ │ │ └── plugin.min.js │ │ │ ├── autosave │ │ │ │ └── plugin.min.js │ │ │ ├── bbcode │ │ │ │ └── plugin.min.js │ │ │ ├── charmap │ │ │ │ └── plugin.min.js │ │ │ ├── code │ │ │ │ └── plugin.min.js │ │ │ ├── codesample │ │ │ │ ├── css │ │ │ │ │ └── prism.css │ │ │ │ └── plugin.min.js │ │ │ ├── colorpicker │ │ │ │ └── plugin.min.js │ │ │ ├── contextmenu │ │ │ │ └── plugin.min.js │ │ │ ├── directionality │ │ │ │ └── plugin.min.js │ │ │ ├── emoticons │ │ │ │ ├── img │ │ │ │ │ ├── smiley-cool.gif │ │ │ │ │ ├── smiley-cry.gif │ │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ │ ├── smiley-frown.gif │ │ │ │ │ ├── smiley-innocent.gif │ │ │ │ │ ├── smiley-kiss.gif │ │ │ │ │ ├── smiley-laughing.gif │ │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ │ ├── smiley-sealed.gif │ │ │ │ │ ├── smiley-smile.gif │ │ │ │ │ ├── smiley-surprised.gif │ │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ │ ├── smiley-undecided.gif │ │ │ │ │ ├── smiley-wink.gif │ │ │ │ │ └── smiley-yell.gif │ │ │ │ └── plugin.min.js │ │ │ ├── fullpage │ │ │ │ └── plugin.min.js │ │ │ ├── fullscreen │ │ │ │ └── plugin.min.js │ │ │ ├── help │ │ │ │ ├── img │ │ │ │ │ └── logo.png │ │ │ │ └── plugin.min.js │ │ │ ├── hr │ │ │ │ └── plugin.min.js │ │ │ ├── image │ │ │ │ └── plugin.min.js │ │ │ ├── imagetools │ │ │ │ └── plugin.min.js │ │ │ ├── importcss │ │ │ │ └── plugin.min.js │ │ │ ├── insertdatetime │ │ │ │ └── plugin.min.js │ │ │ ├── legacyoutput │ │ │ │ └── plugin.min.js │ │ │ ├── lineheight │ │ │ │ └── plugin.min.js │ │ │ ├── link │ │ │ │ └── plugin.min.js │ │ │ ├── lists │ │ │ │ └── plugin.min.js │ │ │ ├── media │ │ │ │ └── plugin.min.js │ │ │ ├── nonbreaking │ │ │ │ └── plugin.min.js │ │ │ ├── noneditable │ │ │ │ └── plugin.min.js │ │ │ ├── pagebreak │ │ │ │ └── plugin.min.js │ │ │ ├── paste │ │ │ │ └── plugin.min.js │ │ │ ├── preview │ │ │ │ └── plugin.min.js │ │ │ ├── print │ │ │ │ └── plugin.min.js │ │ │ ├── save │ │ │ │ └── plugin.min.js │ │ │ ├── searchreplace │ │ │ │ └── plugin.min.js │ │ │ ├── spellchecker │ │ │ │ └── plugin.min.js │ │ │ ├── tabfocus │ │ │ │ └── plugin.min.js │ │ │ ├── table │ │ │ │ └── plugin.min.js │ │ │ ├── template │ │ │ │ └── plugin.min.js │ │ │ ├── textcolor │ │ │ │ └── plugin.min.js │ │ │ ├── textpattern │ │ │ │ └── plugin.min.js │ │ │ ├── toc │ │ │ │ └── plugin.min.js │ │ │ ├── visualblocks │ │ │ │ ├── css │ │ │ │ │ └── visualblocks.css │ │ │ │ └── plugin.min.js │ │ │ ├── visualchars │ │ │ │ └── plugin.min.js │ │ │ └── wordcount │ │ │ │ └── plugin.min.js │ │ ├── skins │ │ │ ├── lightgray │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── content.mobile.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── tinymce-mobile.woff │ │ │ │ │ ├── tinymce-small.eot │ │ │ │ │ ├── tinymce-small.svg │ │ │ │ │ ├── tinymce-small.ttf │ │ │ │ │ ├── tinymce-small.woff │ │ │ │ │ ├── tinymce.eot │ │ │ │ │ ├── tinymce.svg │ │ │ │ │ ├── tinymce.ttf │ │ │ │ │ └── tinymce.woff │ │ │ │ ├── img │ │ │ │ │ ├── anchor.gif │ │ │ │ │ ├── loader.gif │ │ │ │ │ ├── object.gif │ │ │ │ │ └── trans.gif │ │ │ │ ├── skin.min.css │ │ │ │ └── skin.mobile.min.css │ │ │ └── magento │ │ │ │ ├── content.inline.min.css │ │ │ │ ├── content.min.css │ │ │ │ ├── content.mobile.min.css │ │ │ │ ├── fonts │ │ │ │ ├── tinymce-mobile.woff │ │ │ │ ├── tinymce-small.eot │ │ │ │ ├── tinymce-small.svg │ │ │ │ ├── tinymce-small.ttf │ │ │ │ ├── tinymce-small.woff │ │ │ │ ├── tinymce.eot │ │ │ │ ├── tinymce.svg │ │ │ │ ├── tinymce.ttf │ │ │ │ └── tinymce.woff │ │ │ │ ├── img │ │ │ │ ├── anchor.gif │ │ │ │ ├── loader.gif │ │ │ │ ├── object.gif │ │ │ │ └── trans.gif │ │ │ │ ├── skin.min.css │ │ │ │ └── skin.mobile.min.css │ │ ├── themes │ │ │ ├── inlite │ │ │ │ └── theme.min.js │ │ │ ├── mobile │ │ │ │ └── theme.min.js │ │ │ └── modern │ │ │ │ └── theme.min.js │ │ └── tinymce.min.js │ │ ├── underscore.js │ │ └── varien │ │ └── js.js ├── nginx.conf.sample ├── package.json.sample ├── phpserver │ ├── .htaccess │ ├── README.md │ └── router.php ├── pub │ ├── .htaccess │ ├── .user.ini │ ├── cron.php │ ├── errors │ │ ├── .htaccess │ │ ├── 404.php │ │ ├── 503.php │ │ ├── default │ │ │ ├── 404.phtml │ │ │ ├── 503.phtml │ │ │ ├── css │ │ │ │ └── styles.css │ │ │ ├── images │ │ │ │ ├── favicon.ico │ │ │ │ ├── i_msg-error.gif │ │ │ │ ├── i_msg-note.gif │ │ │ │ ├── i_msg-success.gif │ │ │ │ └── logo.gif │ │ │ ├── nocache.phtml │ │ │ ├── page.phtml │ │ │ └── report.phtml │ │ ├── design.xml │ │ ├── local.xml.sample │ │ ├── noCache.php │ │ ├── processor.php │ │ ├── processorFactory.php │ │ └── report.php │ ├── get.php │ ├── health_check.php │ ├── index.php │ ├── martins.php │ ├── media │ │ ├── .htaccess │ │ ├── custom_options │ │ │ └── .htaccess │ │ ├── customer │ │ │ └── .htaccess │ │ ├── downloadable │ │ │ └── .htaccess │ │ ├── favicon │ │ │ └── websites │ │ │ │ └── 1 │ │ │ │ └── favicon.png │ │ ├── import │ │ │ └── .htaccess │ │ ├── sitemap │ │ │ └── .htaccess │ │ ├── styles.css │ │ ├── theme_customization │ │ │ └── .htaccess │ │ └── wysiwyg │ │ │ └── firestore │ │ │ └── home-banner.jpg │ ├── opt │ │ └── magento │ │ │ └── var │ │ │ └── resource_config.json │ ├── static.php │ └── static │ │ └── .htaccess ├── setup │ ├── .htaccess │ ├── config │ │ ├── .htaccess │ │ ├── application.config.php │ │ ├── autoload │ │ │ └── global.php │ │ ├── di.config.php │ │ ├── languages.config.php │ │ ├── module.config.php │ │ ├── router.config.php │ │ └── states.install.config.php │ ├── index.php │ ├── performance-toolkit │ │ ├── .htaccess │ │ ├── README.md │ │ ├── benchmark.jmx │ │ ├── benchmark_2015.jmx │ │ ├── config │ │ │ ├── attributeSets.xml │ │ │ ├── customerConfig.xml │ │ │ ├── description.xml │ │ │ ├── di.xml │ │ │ ├── searchConfig.xml │ │ │ ├── searchTerms.xml │ │ │ ├── searchTermsLarge.xml │ │ │ └── shortDescription.xml │ │ ├── files │ │ │ ├── downloadable_original.txt │ │ │ ├── downloadable_sample.txt │ │ │ └── search_terms.csv │ │ └── profiles │ │ │ └── ce │ │ │ ├── extra_large.xml │ │ │ ├── large.xml │ │ │ ├── medium.xml │ │ │ ├── medium_msite.xml │ │ │ └── small.xml │ ├── pub │ │ ├── .htaccess │ │ ├── angular-clickout │ │ │ ├── angular-clickout.js │ │ │ ├── angular-clickout.min.js │ │ │ └── angular-clickout.min.js.map │ │ ├── angular-ng-dialog │ │ │ └── angular-ng-dialog.min.js │ │ ├── angular-ng-storage │ │ │ └── angular-ng-storage.min.js │ │ ├── angular-sanitize │ │ │ ├── angular-sanitize.js │ │ │ ├── angular-sanitize.min.js │ │ │ └── angular-sanitize.min.js.map │ │ ├── angular-ui-bootstrap │ │ │ └── angular-ui-bootstrap.min.js │ │ ├── angular-ui-router │ │ │ └── angular-ui-router.min.js │ │ ├── angular │ │ │ ├── angular.js │ │ │ ├── angular.min.js │ │ │ └── angular.min.js.map │ │ ├── bootstrap │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ └── bootstrap.min.js │ │ ├── fonts │ │ │ ├── icons │ │ │ │ ├── icons.eot │ │ │ │ ├── icons.svg │ │ │ │ ├── icons.ttf │ │ │ │ ├── icons.woff │ │ │ │ ├── icons.woff2 │ │ │ │ └── selection.json │ │ │ └── opensans │ │ │ │ ├── bold │ │ │ │ ├── opensans-700.eot │ │ │ │ ├── opensans-700.svg │ │ │ │ ├── opensans-700.ttf │ │ │ │ ├── opensans-700.woff │ │ │ │ └── opensans-700.woff2 │ │ │ │ ├── light │ │ │ │ ├── opensans-300.eot │ │ │ │ ├── opensans-300.svg │ │ │ │ ├── opensans-300.ttf │ │ │ │ ├── opensans-300.woff │ │ │ │ └── opensans-300.woff2 │ │ │ │ ├── regular │ │ │ │ ├── opensans-400.eot │ │ │ │ ├── opensans-400.svg │ │ │ │ ├── opensans-400.ttf │ │ │ │ ├── opensans-400.woff │ │ │ │ └── opensans-400.woff2 │ │ │ │ └── semibold │ │ │ │ ├── opensans-600.eot │ │ │ │ ├── opensans-600.svg │ │ │ │ ├── opensans-600.ttf │ │ │ │ ├── opensans-600.woff │ │ │ │ └── opensans-600.woff2 │ │ ├── images │ │ │ ├── ajax-loader.gif │ │ │ ├── arrows-bg.svg │ │ │ ├── favicon │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── favicon-96x96.png │ │ │ │ └── favicon.ico │ │ │ ├── loader-1.gif │ │ │ ├── loader-2.gif │ │ │ ├── logo.svg │ │ │ ├── magento-icon.svg │ │ │ └── magento-logo.svg │ │ ├── magento │ │ │ └── setup │ │ │ │ ├── app.js │ │ │ │ ├── landing.js │ │ │ │ ├── main.js │ │ │ │ └── view │ │ │ │ └── pagination.html │ │ └── styles │ │ │ └── setup.css │ ├── src │ │ ├── .htaccess │ │ ├── Magento │ │ │ └── Setup │ │ │ │ ├── Application.php │ │ │ │ ├── Console │ │ │ │ ├── Command │ │ │ │ │ ├── AbstractDependenciesCommand.php │ │ │ │ │ ├── AbstractMaintenanceCommand.php │ │ │ │ │ ├── AbstractModuleCommand.php │ │ │ │ │ ├── AbstractModuleManageCommand.php │ │ │ │ │ ├── AbstractSetupCommand.php │ │ │ │ │ ├── AdminUserCreateCommand.php │ │ │ │ │ ├── BackupCommand.php │ │ │ │ │ ├── ConfigSetCommand.php │ │ │ │ │ ├── DbDataUpgradeCommand.php │ │ │ │ │ ├── DbSchemaUpgradeCommand.php │ │ │ │ │ ├── DbStatusCommand.php │ │ │ │ │ ├── DependenciesShowFrameworkCommand.php │ │ │ │ │ ├── DependenciesShowModulesCircularCommand.php │ │ │ │ │ ├── DependenciesShowModulesCommand.php │ │ │ │ │ ├── DeployStaticContentCommand.php │ │ │ │ │ ├── DiCompileCommand.php │ │ │ │ │ ├── GenerateFixturesCommand.php │ │ │ │ │ ├── I18nCollectPhrasesCommand.php │ │ │ │ │ ├── I18nPackCommand.php │ │ │ │ │ ├── InfoAdminUriCommand.php │ │ │ │ │ ├── InfoBackupsListCommand.php │ │ │ │ │ ├── InfoCurrencyListCommand.php │ │ │ │ │ ├── InfoLanguageListCommand.php │ │ │ │ │ ├── InfoTimezoneListCommand.php │ │ │ │ │ ├── InstallCommand.php │ │ │ │ │ ├── InstallStoreConfigurationCommand.php │ │ │ │ │ ├── MaintenanceAllowIpsCommand.php │ │ │ │ │ ├── MaintenanceDisableCommand.php │ │ │ │ │ ├── MaintenanceEnableCommand.php │ │ │ │ │ ├── MaintenanceStatusCommand.php │ │ │ │ │ ├── ModuleConfigStatusCommand.php │ │ │ │ │ ├── ModuleDisableCommand.php │ │ │ │ │ ├── ModuleEnableCommand.php │ │ │ │ │ ├── ModuleStatusCommand.php │ │ │ │ │ ├── ModuleUninstallCommand.php │ │ │ │ │ ├── RollbackCommand.php │ │ │ │ │ ├── UninstallCommand.php │ │ │ │ │ └── UpgradeCommand.php │ │ │ │ ├── CommandList.php │ │ │ │ ├── CompilerPreparation.php │ │ │ │ ├── InputValidationException.php │ │ │ │ └── Style │ │ │ │ │ ├── MagentoStyle.php │ │ │ │ │ └── MagentoStyleInterface.php │ │ │ │ ├── Controller │ │ │ │ ├── Index.php │ │ │ │ ├── Landing.php │ │ │ │ ├── License.php │ │ │ │ ├── Navigation.php │ │ │ │ └── ResponseTypeInterface.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Fixtures │ │ │ │ ├── AdminUsersFixture.php │ │ │ │ ├── AttributeSet │ │ │ │ │ ├── AttributeSetFixture.php │ │ │ │ │ ├── Pattern.php │ │ │ │ │ └── SwatchesGenerator.php │ │ │ │ ├── AttributeSetsFixture.php │ │ │ │ ├── BundleProductsFixture.php │ │ │ │ ├── CartPriceRulesFixture.php │ │ │ │ ├── CatalogPriceRulesFixture.php │ │ │ │ ├── CategoriesFixture.php │ │ │ │ ├── CategoryResolver.php │ │ │ │ ├── ConfigsApplyFixture.php │ │ │ │ ├── ConfigurableProductsFixture.php │ │ │ │ ├── CouponCodesFixture.php │ │ │ │ ├── CustomerGroupsFixture.php │ │ │ │ ├── CustomersFixture.php │ │ │ │ ├── EavVariationsFixture.php │ │ │ │ ├── Fixture.php │ │ │ │ ├── FixtureConfig.php │ │ │ │ ├── FixtureModel.php │ │ │ │ ├── ImagesFixture.php │ │ │ │ ├── ImagesGenerator │ │ │ │ │ └── ImagesGenerator.php │ │ │ │ ├── IndexersStatesApplyFixture.php │ │ │ │ ├── OrdersFixture.php │ │ │ │ ├── PriceProvider.php │ │ │ │ ├── ProductsAmountProvider.php │ │ │ │ ├── Quote │ │ │ │ │ ├── QuoteConfiguration.php │ │ │ │ │ ├── QuoteGenerator.php │ │ │ │ │ └── QuoteGeneratorFactory.php │ │ │ │ ├── SimpleProductsFixture.php │ │ │ │ ├── StoresFixture.php │ │ │ │ ├── TaxRatesFixture.php │ │ │ │ ├── TaxRulesFixture.php │ │ │ │ ├── WebsiteCategoryProvider.php │ │ │ │ └── _files │ │ │ │ │ ├── dictionary.csv │ │ │ │ │ ├── orders_fixture_data.json │ │ │ │ │ ├── tax_rates.csv │ │ │ │ │ └── tax_rates_small.csv │ │ │ │ ├── Model │ │ │ │ ├── Address │ │ │ │ │ └── AddressDataGenerator.php │ │ │ │ ├── AdminAccount.php │ │ │ │ ├── AdminAccountFactory.php │ │ │ │ ├── BasePackageInfo.php │ │ │ │ ├── BatchInsert.php │ │ │ │ ├── Bootstrap.php │ │ │ │ ├── Complex │ │ │ │ │ ├── Generator.php │ │ │ │ │ └── Pattern.php │ │ │ │ ├── ConfigGenerator.php │ │ │ │ ├── ConfigModel.php │ │ │ │ ├── ConfigOptionsList.php │ │ │ │ ├── ConfigOptionsList │ │ │ │ │ ├── Cache.php │ │ │ │ │ ├── Directory.php │ │ │ │ │ ├── DriverOptions.php │ │ │ │ │ ├── Lock.php │ │ │ │ │ ├── PageCache.php │ │ │ │ │ └── Session.php │ │ │ │ ├── ConfigOptionsListCollector.php │ │ │ │ ├── CryptKeyGenerator.php │ │ │ │ ├── CryptKeyGeneratorInterface.php │ │ │ │ ├── Customer │ │ │ │ │ ├── CustomerDataGenerator.php │ │ │ │ │ └── CustomerDataGeneratorFactory.php │ │ │ │ ├── DataGenerator.php │ │ │ │ ├── DateTime │ │ │ │ │ ├── DateTimeProvider.php │ │ │ │ │ └── TimeZoneProvider.php │ │ │ │ ├── DeclarationInstaller.php │ │ │ │ ├── DefaultDescriptionGenerator.php │ │ │ │ ├── Description │ │ │ │ │ ├── DescriptionGenerator.php │ │ │ │ │ ├── DescriptionParagraphGenerator.php │ │ │ │ │ ├── DescriptionSentenceGenerator.php │ │ │ │ │ ├── Mixin │ │ │ │ │ │ ├── BoldMixin.php │ │ │ │ │ │ ├── BrakeMixin.php │ │ │ │ │ │ ├── DescriptionMixinInterface.php │ │ │ │ │ │ ├── HeaderMixin.php │ │ │ │ │ │ ├── Helper │ │ │ │ │ │ │ ├── RandomWordSelector.php │ │ │ │ │ │ │ └── WordWrapper.php │ │ │ │ │ │ ├── ItalicMixin.php │ │ │ │ │ │ ├── MixinFactory.php │ │ │ │ │ │ ├── ParagraphMixin.php │ │ │ │ │ │ └── SpanMixin.php │ │ │ │ │ └── MixinManager.php │ │ │ │ ├── DescriptionGeneratorInterface.php │ │ │ │ ├── Dictionary.php │ │ │ │ ├── FixtureGenerator │ │ │ │ │ ├── AutoIncrement.php │ │ │ │ │ ├── BundleProductGenerator.php │ │ │ │ │ ├── BundleProductTemplateGenerator.php │ │ │ │ │ ├── ConfigurableProductGenerator.php │ │ │ │ │ ├── ConfigurableProductTemplateGenerator.php │ │ │ │ │ ├── CustomerGenerator.php │ │ │ │ │ ├── CustomerTemplateGenerator.php │ │ │ │ │ ├── EntityGenerator.php │ │ │ │ │ ├── ProductGenerator.php │ │ │ │ │ ├── ProductTemplateGeneratorFactory.php │ │ │ │ │ ├── SimpleProductTemplateGenerator.php │ │ │ │ │ ├── SqlCollector.php │ │ │ │ │ └── TemplateEntityGeneratorInterface.php │ │ │ │ ├── Generator.php │ │ │ │ ├── Installer.php │ │ │ │ ├── Installer │ │ │ │ │ └── Progress.php │ │ │ │ ├── InstallerFactory.php │ │ │ │ ├── License.php │ │ │ │ ├── ModuleContext.php │ │ │ │ ├── ModuleRegistryUninstaller.php │ │ │ │ ├── ModuleUninstaller.php │ │ │ │ ├── Navigation.php │ │ │ │ ├── ObjectManagerProvider.php │ │ │ │ ├── PackagesAuth.php │ │ │ │ ├── PhpInformation.php │ │ │ │ ├── PhpReadinessCheck.php │ │ │ │ ├── SearchConfig.php │ │ │ │ ├── SearchConfigFactory.php │ │ │ │ ├── SearchConfigOptionsList.php │ │ │ │ ├── SearchTermDescriptionGenerator.php │ │ │ │ ├── SearchTermDescriptionGeneratorFactory.php │ │ │ │ ├── SearchTermManager.php │ │ │ │ ├── StoreConfigurationDataMapper.php │ │ │ │ ├── ThemeDependencyCheckerFactory.php │ │ │ │ └── UninstallCollector.php │ │ │ │ ├── Module.php │ │ │ │ ├── Module │ │ │ │ ├── ConnectionFactory.php │ │ │ │ ├── DataSetup.php │ │ │ │ ├── DataSetupFactory.php │ │ │ │ ├── Dependency │ │ │ │ │ ├── Circular.php │ │ │ │ │ ├── Parser │ │ │ │ │ │ ├── Code.php │ │ │ │ │ │ ├── Composer │ │ │ │ │ │ │ └── Json.php │ │ │ │ │ │ └── Config │ │ │ │ │ │ │ └── Xml.php │ │ │ │ │ ├── ParserInterface.php │ │ │ │ │ ├── Report │ │ │ │ │ │ ├── Builder │ │ │ │ │ │ │ └── AbstractBuilder.php │ │ │ │ │ │ ├── BuilderInterface.php │ │ │ │ │ │ ├── Circular │ │ │ │ │ │ │ ├── Builder.php │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ ├── Chain.php │ │ │ │ │ │ │ │ ├── Config.php │ │ │ │ │ │ │ │ └── Module.php │ │ │ │ │ │ │ └── Writer.php │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ │ └── AbstractConfig.php │ │ │ │ │ │ │ └── ConfigInterface.php │ │ │ │ │ │ ├── Dependency │ │ │ │ │ │ │ ├── Builder.php │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ ├── Config.php │ │ │ │ │ │ │ │ ├── Dependency.php │ │ │ │ │ │ │ │ └── Module.php │ │ │ │ │ │ │ └── Writer.php │ │ │ │ │ │ ├── Framework │ │ │ │ │ │ │ ├── Builder.php │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ │ ├── Config.php │ │ │ │ │ │ │ │ ├── Dependency.php │ │ │ │ │ │ │ │ └── Module.php │ │ │ │ │ │ │ └── Writer.php │ │ │ │ │ │ ├── Writer │ │ │ │ │ │ │ └── Csv │ │ │ │ │ │ │ │ └── AbstractWriter.php │ │ │ │ │ │ └── WriterInterface.php │ │ │ │ │ └── ServiceLocator.php │ │ │ │ ├── Di │ │ │ │ │ ├── App │ │ │ │ │ │ └── Task │ │ │ │ │ │ │ ├── Manager.php │ │ │ │ │ │ │ ├── Operation │ │ │ │ │ │ │ ├── AppActionListGenerator.php │ │ │ │ │ │ │ ├── ApplicationCodeGenerator.php │ │ │ │ │ │ │ ├── Area.php │ │ │ │ │ │ │ ├── Interception.php │ │ │ │ │ │ │ ├── InterceptionCache.php │ │ │ │ │ │ │ ├── PluginListGenerator.php │ │ │ │ │ │ │ ├── ProxyGenerator.php │ │ │ │ │ │ │ ├── RepositoryGenerator.php │ │ │ │ │ │ │ └── ServiceDataAttributesGenerator.php │ │ │ │ │ │ │ ├── OperationException.php │ │ │ │ │ │ │ ├── OperationFactory.php │ │ │ │ │ │ │ └── OperationInterface.php │ │ │ │ │ ├── Code │ │ │ │ │ │ ├── Generator.php │ │ │ │ │ │ ├── Generator │ │ │ │ │ │ │ ├── InterceptionConfigurationBuilder.php │ │ │ │ │ │ │ ├── Interceptor.php │ │ │ │ │ │ │ └── PluginList.php │ │ │ │ │ │ ├── GeneratorFactory.php │ │ │ │ │ │ ├── Reader │ │ │ │ │ │ │ ├── ClassReaderDecorator.php │ │ │ │ │ │ │ ├── ClassesScanner.php │ │ │ │ │ │ │ ├── ClassesScannerInterface.php │ │ │ │ │ │ │ ├── Decorator │ │ │ │ │ │ │ │ ├── Area.php │ │ │ │ │ │ │ │ ├── Directory.php │ │ │ │ │ │ │ │ └── Interceptions.php │ │ │ │ │ │ │ ├── FileClassScanner.php │ │ │ │ │ │ │ ├── FileScanner.php │ │ │ │ │ │ │ ├── InvalidFileException.php │ │ │ │ │ │ │ └── Type.php │ │ │ │ │ │ └── Scanner │ │ │ │ │ │ │ ├── ArrayScanner.php │ │ │ │ │ │ │ ├── CompositeScanner.php │ │ │ │ │ │ │ ├── ConfigurationScanner.php │ │ │ │ │ │ │ ├── DirectoryScanner.php │ │ │ │ │ │ │ ├── InheritanceInterceptorScanner.php │ │ │ │ │ │ │ ├── InterceptedInstancesScanner.php │ │ │ │ │ │ │ ├── PhpScanner.php │ │ │ │ │ │ │ ├── PluginScanner.php │ │ │ │ │ │ │ ├── RepositoryScanner.php │ │ │ │ │ │ │ ├── ScannerInterface.php │ │ │ │ │ │ │ ├── ServiceDataAttributesScanner.php │ │ │ │ │ │ │ ├── XmlInterceptorScanner.php │ │ │ │ │ │ │ └── XmlScanner.php │ │ │ │ │ ├── Compiler │ │ │ │ │ │ ├── ArgumentsResolver.php │ │ │ │ │ │ ├── ArgumentsResolverFactory.php │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ ├── Chain │ │ │ │ │ │ │ │ ├── ArgumentsSerialization.php │ │ │ │ │ │ │ │ ├── BackslashTrim.php │ │ │ │ │ │ │ │ ├── InterceptorSubstitution.php │ │ │ │ │ │ │ │ └── PreferencesResolving.php │ │ │ │ │ │ │ ├── ModificationChain.php │ │ │ │ │ │ │ ├── ModificationInterface.php │ │ │ │ │ │ │ ├── Reader.php │ │ │ │ │ │ │ ├── Writer │ │ │ │ │ │ │ │ └── Filesystem.php │ │ │ │ │ │ │ └── WriterInterface.php │ │ │ │ │ │ ├── ConstructorArgument.php │ │ │ │ │ │ └── Log │ │ │ │ │ │ │ ├── Log.php │ │ │ │ │ │ │ └── Writer │ │ │ │ │ │ │ └── Console.php │ │ │ │ │ └── Definition │ │ │ │ │ │ └── Collection.php │ │ │ │ ├── I18n │ │ │ │ │ ├── Context.php │ │ │ │ │ ├── Dictionary.php │ │ │ │ │ ├── Dictionary │ │ │ │ │ │ ├── Generator.php │ │ │ │ │ │ ├── Loader │ │ │ │ │ │ │ ├── File │ │ │ │ │ │ │ │ ├── AbstractFile.php │ │ │ │ │ │ │ │ └── Csv.php │ │ │ │ │ │ │ └── FileInterface.php │ │ │ │ │ │ ├── Options │ │ │ │ │ │ │ ├── Resolver.php │ │ │ │ │ │ │ ├── ResolverFactory.php │ │ │ │ │ │ │ └── ResolverInterface.php │ │ │ │ │ │ ├── Phrase.php │ │ │ │ │ │ ├── Writer │ │ │ │ │ │ │ ├── Csv.php │ │ │ │ │ │ │ └── Csv │ │ │ │ │ │ │ │ └── Stdo.php │ │ │ │ │ │ └── WriterInterface.php │ │ │ │ │ ├── Factory.php │ │ │ │ │ ├── FilesCollector.php │ │ │ │ │ ├── Locale.php │ │ │ │ │ ├── Pack │ │ │ │ │ │ ├── Generator.php │ │ │ │ │ │ ├── Writer │ │ │ │ │ │ │ └── File │ │ │ │ │ │ │ │ ├── AbstractFile.php │ │ │ │ │ │ │ │ └── Csv.php │ │ │ │ │ │ └── WriterInterface.php │ │ │ │ │ ├── Parser │ │ │ │ │ │ ├── AbstractParser.php │ │ │ │ │ │ ├── Adapter │ │ │ │ │ │ │ ├── AbstractAdapter.php │ │ │ │ │ │ │ ├── Html.php │ │ │ │ │ │ │ ├── Js.php │ │ │ │ │ │ │ ├── Php.php │ │ │ │ │ │ │ ├── Php │ │ │ │ │ │ │ │ ├── Tokenizer.php │ │ │ │ │ │ │ │ └── Tokenizer │ │ │ │ │ │ │ │ │ ├── PhraseCollector.php │ │ │ │ │ │ │ │ │ ├── Token.php │ │ │ │ │ │ │ │ │ └── Translate │ │ │ │ │ │ │ │ │ └── MethodCollector.php │ │ │ │ │ │ │ └── Xml.php │ │ │ │ │ │ ├── AdapterInterface.php │ │ │ │ │ │ ├── Contextual.php │ │ │ │ │ │ └── Parser.php │ │ │ │ │ ├── ParserInterface.php │ │ │ │ │ └── ServiceLocator.php │ │ │ │ ├── ResourceFactory.php │ │ │ │ ├── Setup.php │ │ │ │ ├── Setup │ │ │ │ │ ├── ResourceConfig.php │ │ │ │ │ └── SetupCache.php │ │ │ │ └── SetupFactory.php │ │ │ │ ├── Mvc │ │ │ │ ├── Bootstrap │ │ │ │ │ └── InitParamListener.php │ │ │ │ └── View │ │ │ │ │ └── Http │ │ │ │ │ └── InjectTemplateListener.php │ │ │ │ ├── Test │ │ │ │ └── Unit │ │ │ │ │ ├── Console │ │ │ │ │ ├── Command │ │ │ │ │ │ ├── AdminUserCreateCommandTest.php │ │ │ │ │ │ ├── BackupCommandTest.php │ │ │ │ │ │ ├── ConfigSetCommandTest.php │ │ │ │ │ │ ├── DbDataUpgradeCommandTest.php │ │ │ │ │ │ ├── DbSchemaUpgradeCommandTest.php │ │ │ │ │ │ ├── DbStatusCommandTest.php │ │ │ │ │ │ ├── DeployStaticContentCommandTest.php │ │ │ │ │ │ ├── DiCompileCommandTest.php │ │ │ │ │ │ ├── FunctionExistMock.php │ │ │ │ │ │ ├── GenerateFixturesCommandTest.php │ │ │ │ │ │ ├── InfoAdminUriCommandTest.php │ │ │ │ │ │ ├── InfoBackupsListCommandTest.php │ │ │ │ │ │ ├── InfoCurrencyListCommandTest.php │ │ │ │ │ │ ├── InfoLanguageListCommandTest.php │ │ │ │ │ │ ├── InfoTimezoneListCommandTest.php │ │ │ │ │ │ ├── InstallCommandTest.php │ │ │ │ │ │ ├── InstallStoreConfigurationCommandTest.php │ │ │ │ │ │ ├── MaintenanceAllowIpsCommandTest.php │ │ │ │ │ │ ├── MaintenanceDisableCommandTest.php │ │ │ │ │ │ ├── MaintenanceEnableCommandTest.php │ │ │ │ │ │ ├── MaintenanceStatusCommandTest.php │ │ │ │ │ │ ├── ModuleConfigStatusCommandTest.php │ │ │ │ │ │ ├── ModuleEnableDisableCommandTest.php │ │ │ │ │ │ ├── ModuleStatusCommandTest.php │ │ │ │ │ │ ├── ModuleUninstallCommandTest.php │ │ │ │ │ │ ├── RollbackCommandTest.php │ │ │ │ │ │ ├── UninstallCommandTest.php │ │ │ │ │ │ └── UpgradeCommandTest.php │ │ │ │ │ ├── CommandListTest.php │ │ │ │ │ ├── CompilerPreparationTest.php │ │ │ │ │ └── Style │ │ │ │ │ │ ├── MagentoStyleTest.php │ │ │ │ │ │ └── TestOutput.php │ │ │ │ │ ├── Controller │ │ │ │ │ ├── IndexTest.php │ │ │ │ │ ├── LandingTest.php │ │ │ │ │ ├── LicenseTest.php │ │ │ │ │ └── NavigationTest.php │ │ │ │ │ ├── Fixtures │ │ │ │ │ ├── AttributeSet │ │ │ │ │ │ ├── AttributeSetFixtureTest.php │ │ │ │ │ │ ├── PatternTest.php │ │ │ │ │ │ └── SwatchesGeneratorTest.php │ │ │ │ │ ├── AttributeSetsFixtureTest.php │ │ │ │ │ ├── CartPriceRulesFixtureTest.php │ │ │ │ │ ├── CatalogPriceRulesFixtureTest.php │ │ │ │ │ ├── CategoriesFixtureTest.php │ │ │ │ │ ├── ConfigsApplyFixtureTest.php │ │ │ │ │ ├── ConfigurableProductsFixtureTest.php │ │ │ │ │ ├── CouponCodesFixtureTest.php │ │ │ │ │ ├── CustomerGroupsFixtureTest.php │ │ │ │ │ ├── CustomersFixtureTest.php │ │ │ │ │ ├── EavVariationsFixtureTest.php │ │ │ │ │ ├── FixtureConfigTest.php │ │ │ │ │ ├── FixtureModelTest.php │ │ │ │ │ ├── IndexersStatesApplyFixtureTest.php │ │ │ │ │ ├── OrdersFixtureTest.php │ │ │ │ │ ├── Quote │ │ │ │ │ │ ├── QuoteConfigurationTest.php │ │ │ │ │ │ ├── QuoteGeneratorFactoryTest.php │ │ │ │ │ │ └── QuoteGeneratorTest.php │ │ │ │ │ ├── StoresFixtureTest.php │ │ │ │ │ ├── TaxRatesFixtureTest.php │ │ │ │ │ └── TaxRulesFixtureTest.php │ │ │ │ │ ├── Model │ │ │ │ │ ├── Address │ │ │ │ │ │ └── AddressDataGeneratorTest.php │ │ │ │ │ ├── AdminAccountFactoryTest.php │ │ │ │ │ ├── AdminAccountTest.php │ │ │ │ │ ├── BasePackageInfoTest.php │ │ │ │ │ ├── Complex │ │ │ │ │ │ ├── ComplexGeneratorTest.php │ │ │ │ │ │ └── PatternTest.php │ │ │ │ │ ├── ConfigGeneratorTest.php │ │ │ │ │ ├── ConfigModelTest.php │ │ │ │ │ ├── ConfigOptionsList │ │ │ │ │ │ ├── CacheTest.php │ │ │ │ │ │ ├── LockTest.php │ │ │ │ │ │ ├── PageCacheTest.php │ │ │ │ │ │ └── SessionTest.php │ │ │ │ │ ├── ConfigOptionsListTest.php │ │ │ │ │ ├── CryptKeyGeneratorTest.php │ │ │ │ │ ├── Customer │ │ │ │ │ │ └── CustomerDataGeneratorTest.php │ │ │ │ │ ├── DataGeneratorTest.php │ │ │ │ │ ├── DateTime │ │ │ │ │ │ ├── DateTimeProviderTest.php │ │ │ │ │ │ └── TimeZoneProviderTest.php │ │ │ │ │ ├── Description │ │ │ │ │ │ ├── DescriptionGeneratorTest.php │ │ │ │ │ │ ├── DescriptionParagraphGeneratorTest.php │ │ │ │ │ │ ├── DescriptionSentenceGeneratorTest.php │ │ │ │ │ │ ├── Mixin │ │ │ │ │ │ │ ├── BoldMixinTest.php │ │ │ │ │ │ │ ├── BrakeMixinTest.php │ │ │ │ │ │ │ ├── HeaderMixinTest.php │ │ │ │ │ │ │ ├── Helper │ │ │ │ │ │ │ │ ├── RandomWordSelectorTest.php │ │ │ │ │ │ │ │ └── WordWrapperTest.php │ │ │ │ │ │ │ ├── ItalicMixinTest.php │ │ │ │ │ │ │ ├── ParagraphMixinTest.php │ │ │ │ │ │ │ └── SpanMixinTest.php │ │ │ │ │ │ └── MixinManagerTest.php │ │ │ │ │ ├── DictionaryTest.php │ │ │ │ │ ├── FixtureGenerator │ │ │ │ │ │ └── SqlCollectorTest.php │ │ │ │ │ ├── GeneratorTest.php │ │ │ │ │ ├── Installer │ │ │ │ │ │ └── ProgressTest.php │ │ │ │ │ ├── InstallerFactoryTest.php │ │ │ │ │ ├── InstallerTest.php │ │ │ │ │ ├── LicenseTest.php │ │ │ │ │ ├── ModuleContextTest.php │ │ │ │ │ ├── ModuleRegistryUninstallerTest.php │ │ │ │ │ ├── ModuleUninstallerTest.php │ │ │ │ │ ├── NavigationTest.php │ │ │ │ │ ├── ObjectManagerProviderTest.php │ │ │ │ │ ├── PhpInformationTest.php │ │ │ │ │ ├── PhpReadinessCheckTest.php │ │ │ │ │ ├── SearchConfigOptionsListTest.php │ │ │ │ │ ├── SearchConfigTest.php │ │ │ │ │ ├── SearchTermDescriptionGeneratorTest.php │ │ │ │ │ ├── SearchTermManagerTest.php │ │ │ │ │ ├── StoreConfigurationDataMapperTest.php │ │ │ │ │ ├── ThemeDependencyCheckerFactoryTest.php │ │ │ │ │ ├── UninstallCollectorTest.php │ │ │ │ │ └── _files │ │ │ │ │ │ └── dictionary.csv │ │ │ │ │ ├── Module │ │ │ │ │ ├── ConfigGeneratorTest.php │ │ │ │ │ ├── ConnectionFactoryTest.php │ │ │ │ │ ├── DataSetupFactoryTest.php │ │ │ │ │ ├── Dependency │ │ │ │ │ │ ├── Parser │ │ │ │ │ │ │ ├── CodeTest.php │ │ │ │ │ │ │ ├── Composer │ │ │ │ │ │ │ │ └── JsonTest.php │ │ │ │ │ │ │ └── Config │ │ │ │ │ │ │ │ └── XmlTest.php │ │ │ │ │ │ └── Report │ │ │ │ │ │ │ ├── Builder │ │ │ │ │ │ │ └── AbstractBuilderTest.php │ │ │ │ │ │ │ ├── Circular │ │ │ │ │ │ │ └── Data │ │ │ │ │ │ │ │ ├── ChainTest.php │ │ │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ │ │ └── ModuleTest.php │ │ │ │ │ │ │ ├── Data │ │ │ │ │ │ │ └── Config │ │ │ │ │ │ │ │ └── AbstractConfigTest.php │ │ │ │ │ │ │ ├── Dependency │ │ │ │ │ │ │ └── Data │ │ │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ │ │ ├── DependencyTest.php │ │ │ │ │ │ │ │ └── ModuleTest.php │ │ │ │ │ │ │ ├── Framework │ │ │ │ │ │ │ ├── BuilderTest.php │ │ │ │ │ │ │ └── Data │ │ │ │ │ │ │ │ ├── ConfigTest.php │ │ │ │ │ │ │ │ ├── DependencyTest.php │ │ │ │ │ │ │ │ └── ModuleTest.php │ │ │ │ │ │ │ └── Writer │ │ │ │ │ │ │ └── Csv │ │ │ │ │ │ │ └── AbstractWriterTest.php │ │ │ │ │ ├── Di │ │ │ │ │ │ ├── App │ │ │ │ │ │ │ └── Task │ │ │ │ │ │ │ │ ├── ApplicationCodeGeneratorTest.php │ │ │ │ │ │ │ │ ├── AreaTest.php │ │ │ │ │ │ │ │ ├── InterceptionCacheTest.php │ │ │ │ │ │ │ │ ├── OperationFactoryTest.php │ │ │ │ │ │ │ │ ├── ProxyGeneratorTest.php │ │ │ │ │ │ │ │ ├── RepositoryGeneratorTest.php │ │ │ │ │ │ │ │ └── ServiceDataAttributesGeneratorTest.php │ │ │ │ │ │ ├── Code │ │ │ │ │ │ │ ├── Generator │ │ │ │ │ │ │ │ └── InterceptionConfigurationBuilderTest.php │ │ │ │ │ │ │ ├── Reader │ │ │ │ │ │ │ │ ├── ClassReaderDecoratorTest.php │ │ │ │ │ │ │ │ ├── ClassesScannerTest.php │ │ │ │ │ │ │ │ ├── FileClassScannerTest.php │ │ │ │ │ │ │ │ ├── FileScannerTest.php │ │ │ │ │ │ │ │ ├── InstancesNamesList │ │ │ │ │ │ │ │ │ ├── AreaTest.php │ │ │ │ │ │ │ │ │ ├── DirectoryTest.php │ │ │ │ │ │ │ │ │ └── InterceptionsTest.php │ │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ │ └── classes.php │ │ │ │ │ │ │ └── Scanner │ │ │ │ │ │ │ │ ├── ArrayScannerTest.php │ │ │ │ │ │ │ │ ├── CompositeScannerTest.php │ │ │ │ │ │ │ │ ├── ConfigurationScannerTest.php │ │ │ │ │ │ │ │ ├── DirectoryScannerTest.php │ │ │ │ │ │ │ │ ├── PhpScannerTest.php │ │ │ │ │ │ │ │ ├── PluginScannerTest.php │ │ │ │ │ │ │ │ ├── ServiceDataAttributesScannerTest.php │ │ │ │ │ │ │ │ ├── XmlInterceptorScannerTest.php │ │ │ │ │ │ │ │ └── XmlScannerTest.php │ │ │ │ │ │ ├── Compiler │ │ │ │ │ │ │ ├── ArgumentsResolverTest.php │ │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ │ ├── Chain │ │ │ │ │ │ │ │ │ ├── ArgumentsSerializationTest.php │ │ │ │ │ │ │ │ │ ├── BackslashTrimTest.php │ │ │ │ │ │ │ │ │ ├── InterceptorSubstitutionTest.php │ │ │ │ │ │ │ │ │ └── PreferencesResolvingTest.php │ │ │ │ │ │ │ │ ├── ModificationChainTest.php │ │ │ │ │ │ │ │ └── ReaderTest.php │ │ │ │ │ │ │ └── ConstructorArgumentTest.php │ │ │ │ │ │ ├── Definition │ │ │ │ │ │ │ └── CollectionTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ ├── additional.php │ │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ ├── bootstrap.php │ │ │ │ │ │ │ ├── code │ │ │ │ │ │ │ │ └── Magento │ │ │ │ │ │ │ │ │ └── SomeModule │ │ │ │ │ │ │ │ │ ├── Api │ │ │ │ │ │ │ │ │ └── Data │ │ │ │ │ │ │ │ │ │ └── SomeInterface.php │ │ │ │ │ │ │ │ │ ├── Element.php │ │ │ │ │ │ │ │ │ ├── ElementFactory.php │ │ │ │ │ │ │ │ │ ├── Helper │ │ │ │ │ │ │ │ │ └── Test.php │ │ │ │ │ │ │ │ │ ├── Model │ │ │ │ │ │ │ │ │ ├── DoubleColon.php │ │ │ │ │ │ │ │ │ ├── StubWithAnonymousClass.php │ │ │ │ │ │ │ │ │ └── Test.php │ │ │ │ │ │ │ │ │ ├── etc │ │ │ │ │ │ │ │ │ ├── adminhtml │ │ │ │ │ │ │ │ │ │ └── system.xml │ │ │ │ │ │ │ │ │ ├── di.xml │ │ │ │ │ │ │ │ │ └── source │ │ │ │ │ │ │ │ │ │ └── PhpExt.php │ │ │ │ │ │ │ │ │ │ └── content │ │ │ │ │ │ │ │ │ └── view │ │ │ │ │ │ │ │ │ └── frontend │ │ │ │ │ │ │ │ │ └── default.xml │ │ │ │ │ │ │ ├── design │ │ │ │ │ │ │ │ └── adminhtml │ │ │ │ │ │ │ │ │ └── default │ │ │ │ │ │ │ │ │ └── backend │ │ │ │ │ │ │ │ │ └── layout.xml │ │ │ │ │ │ │ └── etc │ │ │ │ │ │ │ │ ├── additional.xml │ │ │ │ │ │ │ │ ├── config.xml │ │ │ │ │ │ │ │ └── di │ │ │ │ │ │ │ │ └── config.xml │ │ │ │ │ │ │ ├── extension_attributes.xml │ │ │ │ │ │ │ └── var │ │ │ │ │ │ │ └── generation │ │ │ │ │ │ │ └── .keep │ │ │ │ │ ├── I18n │ │ │ │ │ │ ├── ContextTest.php │ │ │ │ │ │ ├── Dictionary │ │ │ │ │ │ │ ├── GeneratorTest.php │ │ │ │ │ │ │ ├── Loader │ │ │ │ │ │ │ │ └── File │ │ │ │ │ │ │ │ │ └── AbstractFileTest.php │ │ │ │ │ │ │ ├── Options │ │ │ │ │ │ │ │ ├── ResolverFactoryTest.php │ │ │ │ │ │ │ │ ├── ResolverTest.php │ │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ │ └── source │ │ │ │ │ │ │ │ │ ├── app │ │ │ │ │ │ │ │ │ ├── code │ │ │ │ │ │ │ │ │ │ ├── module1 │ │ │ │ │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ │ │ │ │ └── module2 │ │ │ │ │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ │ │ │ └── design │ │ │ │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ │ └── web │ │ │ │ │ │ │ │ │ ├── mage │ │ │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ │ │ │ └── varien │ │ │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ │ ├── PhraseTest.php │ │ │ │ │ │ │ └── Writer │ │ │ │ │ │ │ │ ├── Csv │ │ │ │ │ │ │ │ └── StdoTest.php │ │ │ │ │ │ │ │ ├── CsvTest.php │ │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ └── .gitignore │ │ │ │ │ │ ├── DictionaryTest.php │ │ │ │ │ │ ├── FactoryTest.php │ │ │ │ │ │ ├── FilesCollectorTest.php │ │ │ │ │ │ ├── LocaleTest.php │ │ │ │ │ │ ├── Pack │ │ │ │ │ │ │ ├── GeneratorTest.php │ │ │ │ │ │ │ └── Writer │ │ │ │ │ │ │ │ └── File │ │ │ │ │ │ │ │ ├── CsvTest.php │ │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ └── ioMock.php │ │ │ │ │ │ ├── Parser │ │ │ │ │ │ │ ├── AbstractParserTest.php │ │ │ │ │ │ │ ├── Adapter │ │ │ │ │ │ │ │ ├── AbstractAdapterTest.php │ │ │ │ │ │ │ │ ├── HtmlTest.php │ │ │ │ │ │ │ │ ├── JsTest.php │ │ │ │ │ │ │ │ ├── Php │ │ │ │ │ │ │ │ │ ├── Tokenizer │ │ │ │ │ │ │ │ │ │ ├── PhraseCollectorTest.php │ │ │ │ │ │ │ │ │ │ └── TokenTest.php │ │ │ │ │ │ │ │ │ ├── TokenizerTest.php │ │ │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ │ │ └── objectsCode.php.txt │ │ │ │ │ │ │ │ ├── PhpTest.php │ │ │ │ │ │ │ │ ├── XmlTest.php │ │ │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ │ │ ├── default.xml │ │ │ │ │ │ │ │ │ ├── default_di.xml │ │ │ │ │ │ │ │ │ ├── email.html │ │ │ │ │ │ │ │ │ └── file.js │ │ │ │ │ │ │ └── ParserTest.php │ │ │ │ │ │ └── _files │ │ │ │ │ │ │ └── files_collector │ │ │ │ │ │ │ ├── default.xml │ │ │ │ │ │ │ └── file.js │ │ │ │ │ ├── ResourceFactoryTest.php │ │ │ │ │ ├── Setup │ │ │ │ │ │ ├── ResourceConfigTest.php │ │ │ │ │ │ └── SetupCacheTest.php │ │ │ │ │ ├── SetupFactoryTest.php │ │ │ │ │ └── SetupTest.php │ │ │ │ │ ├── Mvc │ │ │ │ │ └── Bootstrap │ │ │ │ │ │ └── InitParamListenerTest.php │ │ │ │ │ └── Validator │ │ │ │ │ ├── DbValidatorTest.php │ │ │ │ │ └── IpValidatorTest.php │ │ │ │ ├── Validator │ │ │ │ ├── DbValidator.php │ │ │ │ ├── ElasticsearchConnectionValidator.php │ │ │ │ ├── IpValidator.php │ │ │ │ └── RedisConnectionValidator.php │ │ │ │ └── registration.php │ │ └── Zend │ │ │ └── Mvc │ │ │ └── Controller │ │ │ └── LazyControllerAbstractFactory.php │ └── view │ │ ├── .htaccess │ │ ├── layout │ │ └── layout.phtml │ │ ├── magento │ │ └── setup │ │ │ ├── index.phtml │ │ │ ├── landing.phtml │ │ │ ├── license.phtml │ │ │ └── navigation │ │ │ └── menu.phtml │ │ └── styles │ │ └── lib │ │ └── variables │ │ ├── _buttons.less │ │ ├── _colors.less │ │ └── _typography.less ├── var │ └── .htaccess └── vendor │ └── .htaccess └── template └── dev └── tests └── integration └── etc ├── install-config-mysql.php.2.3.dist └── install-config-mysql.php.2.4.dist /.github/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/.github/.htaccess -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/developer-experience-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/.github/ISSUE_TEMPLATE/developer-experience-issue.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | /.vscode/ 3 | /phpconf/ 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/.gitmodules -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/README.md -------------------------------------------------------------------------------- /bin/analyse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/analyse -------------------------------------------------------------------------------- /bin/bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/bash -------------------------------------------------------------------------------- /bin/cache-clean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/cache-clean -------------------------------------------------------------------------------- /bin/cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/cli -------------------------------------------------------------------------------- /bin/clinotty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/clinotty -------------------------------------------------------------------------------- /bin/cliq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/cliq -------------------------------------------------------------------------------- /bin/composer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/composer -------------------------------------------------------------------------------- /bin/copyfromcontainer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/copyfromcontainer -------------------------------------------------------------------------------- /bin/copytocontainer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/copytocontainer -------------------------------------------------------------------------------- /bin/cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/cron -------------------------------------------------------------------------------- /bin/debug-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/debug-cli -------------------------------------------------------------------------------- /bin/dev-test-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/dev-test-run -------------------------------------------------------------------------------- /bin/dev-urn-catalog-generate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/dev-urn-catalog-generate -------------------------------------------------------------------------------- /bin/devconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/devconsole -------------------------------------------------------------------------------- /bin/devtools-cli-check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/devtools-cli-check -------------------------------------------------------------------------------- /bin/docker-compose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/docker-compose -------------------------------------------------------------------------------- /bin/download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/download -------------------------------------------------------------------------------- /bin/fixowns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/fixowns -------------------------------------------------------------------------------- /bin/fixperms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/fixperms -------------------------------------------------------------------------------- /bin/grunt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/grunt -------------------------------------------------------------------------------- /bin/install-php-extensions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/install-php-extensions -------------------------------------------------------------------------------- /bin/magento: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/magento -------------------------------------------------------------------------------- /bin/mftf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/mftf -------------------------------------------------------------------------------- /bin/mysql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/mysql -------------------------------------------------------------------------------- /bin/mysqldump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/mysqldump -------------------------------------------------------------------------------- /bin/n98-magerun2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/n98-magerun2 -------------------------------------------------------------------------------- /bin/node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/node -------------------------------------------------------------------------------- /bin/npm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/npm -------------------------------------------------------------------------------- /bin/phpcbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/phpcbf -------------------------------------------------------------------------------- /bin/phpcs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/phpcs -------------------------------------------------------------------------------- /bin/phpcs-json-report: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/phpcs-json-report -------------------------------------------------------------------------------- /bin/pwa-studio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/pwa-studio -------------------------------------------------------------------------------- /bin/redis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/redis -------------------------------------------------------------------------------- /bin/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/remove -------------------------------------------------------------------------------- /bin/removeall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/removeall -------------------------------------------------------------------------------- /bin/removevolumes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/removevolumes -------------------------------------------------------------------------------- /bin/restart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/restart -------------------------------------------------------------------------------- /bin/root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/root -------------------------------------------------------------------------------- /bin/rootnotty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/rootnotty -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/setup-composer-auth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/setup-composer-auth -------------------------------------------------------------------------------- /bin/setup-domain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/setup-domain -------------------------------------------------------------------------------- /bin/setup-grunt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/setup-grunt -------------------------------------------------------------------------------- /bin/setup-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/setup-install -------------------------------------------------------------------------------- /bin/setup-integration-tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/setup-integration-tests -------------------------------------------------------------------------------- /bin/setup-pwa-studio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/setup-pwa-studio -------------------------------------------------------------------------------- /bin/setup-ssl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/setup-ssl -------------------------------------------------------------------------------- /bin/setup-ssl-ca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/setup-ssl-ca -------------------------------------------------------------------------------- /bin/start: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/start -------------------------------------------------------------------------------- /bin/status: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/status -------------------------------------------------------------------------------- /bin/stop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/stop -------------------------------------------------------------------------------- /bin/stopall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/stopall -------------------------------------------------------------------------------- /bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/update -------------------------------------------------------------------------------- /bin/xdebug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/bin/xdebug -------------------------------------------------------------------------------- /compose.commerce246beta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/compose.commerce246beta.yaml -------------------------------------------------------------------------------- /compose.dev-linux.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/compose.dev-linux.yaml -------------------------------------------------------------------------------- /compose.dev-ssh.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/compose.dev-ssh.yaml -------------------------------------------------------------------------------- /compose.dev.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/compose.dev.yaml -------------------------------------------------------------------------------- /compose.healthcheck.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/compose.healthcheck.yaml -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/compose.yaml -------------------------------------------------------------------------------- /env/blackfire.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/env/blackfire.env -------------------------------------------------------------------------------- /env/db.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/env/db.env -------------------------------------------------------------------------------- /env/elasticsearch.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/env/elasticsearch.env -------------------------------------------------------------------------------- /env/magento.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/env/magento.env -------------------------------------------------------------------------------- /env/opensearch.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/env/opensearch.env -------------------------------------------------------------------------------- /env/phpfpm.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/env/phpfpm.env -------------------------------------------------------------------------------- /env/rabbitmq.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/env/rabbitmq.env -------------------------------------------------------------------------------- /env/redis.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/env/redis.env -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/.htaccess -------------------------------------------------------------------------------- /src/.htaccess.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/.htaccess.sample -------------------------------------------------------------------------------- /src/.php_cs.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/.php_cs.dist -------------------------------------------------------------------------------- /src/.user.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/.user.ini -------------------------------------------------------------------------------- /src/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/CHANGELOG.md -------------------------------------------------------------------------------- /src/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/COPYING.txt -------------------------------------------------------------------------------- /src/Gruntfile.js.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/Gruntfile.js.sample -------------------------------------------------------------------------------- /src/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/LICENSE.txt -------------------------------------------------------------------------------- /src/LICENSE_AFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/LICENSE_AFL.txt -------------------------------------------------------------------------------- /src/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/SECURITY.md -------------------------------------------------------------------------------- /src/app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/app/.htaccess -------------------------------------------------------------------------------- /src/app/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/app/autoload.php -------------------------------------------------------------------------------- /src/app/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/app/bootstrap.php -------------------------------------------------------------------------------- /src/app/code/Magenteiro/ConfigInfo/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/app/code/Magenteiro/ConfigInfo/composer.json -------------------------------------------------------------------------------- /src/app/code/Magenteiro/ConfigInfo/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/app/code/Magenteiro/ConfigInfo/etc/di.xml -------------------------------------------------------------------------------- /src/app/code/Magenteiro/ConfigInfo/etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/app/code/Magenteiro/ConfigInfo/etc/module.xml -------------------------------------------------------------------------------- /src/app/code/Magenteiro/ConfigInfo/registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/app/code/Magenteiro/ConfigInfo/registration.php -------------------------------------------------------------------------------- /src/app/etc/NonComposerComponentRegistration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/app/etc/NonComposerComponentRegistration.php -------------------------------------------------------------------------------- /src/app/etc/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/app/etc/config.php -------------------------------------------------------------------------------- /src/app/etc/db_schema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/app/etc/db_schema.xml -------------------------------------------------------------------------------- /src/app/etc/di.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/app/etc/di.xml -------------------------------------------------------------------------------- /src/app/etc/registration_globlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/app/etc/registration_globlist.php -------------------------------------------------------------------------------- /src/app/etc/vendor_path.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/app/etc/vendor_path.php -------------------------------------------------------------------------------- /src/auth.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/auth.json.sample -------------------------------------------------------------------------------- /src/bin/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/bin/.htaccess -------------------------------------------------------------------------------- /src/bin/magento: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/bin/magento -------------------------------------------------------------------------------- /src/bin/n98-magerun2.phar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/bin/n98-magerun2.phar -------------------------------------------------------------------------------- /src/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/composer.json -------------------------------------------------------------------------------- /src/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/composer.lock -------------------------------------------------------------------------------- /src/dev/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/.htaccess -------------------------------------------------------------------------------- /src/dev/tests/acceptance/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/.gitignore -------------------------------------------------------------------------------- /src/dev/tests/acceptance/.htaccess.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/.htaccess.sample -------------------------------------------------------------------------------- /src/dev/tests/acceptance/staticRuleset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/staticRuleset.json -------------------------------------------------------------------------------- /src/dev/tests/acceptance/tests/_bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/tests/_bootstrap.php -------------------------------------------------------------------------------- /src/dev/tests/acceptance/tests/_data/BB-Products.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/tests/_data/BB-Products.csv -------------------------------------------------------------------------------- /src/dev/tests/acceptance/tests/_data/adobe-base.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/tests/_data/adobe-base.jpg -------------------------------------------------------------------------------- /src/dev/tests/acceptance/tests/_data/adobe-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/tests/_data/adobe-small.jpg -------------------------------------------------------------------------------- /src/dev/tests/acceptance/tests/_data/adobe-thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/tests/_data/adobe-thumb.jpg -------------------------------------------------------------------------------- /src/dev/tests/acceptance/tests/_data/bmp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/tests/_data/bmp.bmp -------------------------------------------------------------------------------- /src/dev/tests/acceptance/tests/_data/dump.sql: -------------------------------------------------------------------------------- 1 | /* Replace this file with actual dump of your database */ -------------------------------------------------------------------------------- /src/dev/tests/acceptance/tests/_data/empty.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/acceptance/tests/_data/gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/tests/_data/gif.gif -------------------------------------------------------------------------------- /src/dev/tests/acceptance/tests/_data/ico.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/tests/_data/ico.ico -------------------------------------------------------------------------------- /src/dev/tests/acceptance/tests/_data/jpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/tests/_data/jpg.jpg -------------------------------------------------------------------------------- /src/dev/tests/acceptance/tests/_data/large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/tests/_data/large.jpg -------------------------------------------------------------------------------- /src/dev/tests/acceptance/tests/_data/lorem_ipsum.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/tests/_data/lorem_ipsum.docx -------------------------------------------------------------------------------- /src/dev/tests/acceptance/tests/_data/lorem_ipsum.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/tests/_data/lorem_ipsum.txt -------------------------------------------------------------------------------- /src/dev/tests/acceptance/tests/_data/m-logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/tests/_data/m-logo.gif -------------------------------------------------------------------------------- /src/dev/tests/acceptance/tests/_data/magento-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/tests/_data/magento-logo.png -------------------------------------------------------------------------------- /src/dev/tests/acceptance/tests/_data/magento.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/tests/_data/magento.jpg -------------------------------------------------------------------------------- /src/dev/tests/acceptance/tests/_data/magento2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/tests/_data/magento2.jpg -------------------------------------------------------------------------------- /src/dev/tests/acceptance/tests/_data/magento3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/tests/_data/magento3.jpg -------------------------------------------------------------------------------- /src/dev/tests/acceptance/tests/_data/magentoStage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/tests/_data/magentoStage.jpg -------------------------------------------------------------------------------- /src/dev/tests/acceptance/tests/_data/medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/tests/_data/medium.jpg -------------------------------------------------------------------------------- /src/dev/tests/acceptance/tests/_data/png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/tests/_data/png.png -------------------------------------------------------------------------------- /src/dev/tests/acceptance/tests/_data/small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/tests/_data/small.jpg -------------------------------------------------------------------------------- /src/dev/tests/acceptance/tests/_data/svg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/tests/_data/svg.svg -------------------------------------------------------------------------------- /src/dev/tests/acceptance/tests/_data/tablerates.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/acceptance/tests/_data/tablerates.csv -------------------------------------------------------------------------------- /src/dev/tests/api-functional/.gitignore: -------------------------------------------------------------------------------- 1 | /*.xml 2 | /var/ 3 | /config/*.php 4 | -------------------------------------------------------------------------------- /src/dev/tests/api-functional/framework/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/api-functional/framework/autoload.php -------------------------------------------------------------------------------- /src/dev/tests/api-functional/framework/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/api-functional/framework/bootstrap.php -------------------------------------------------------------------------------- /src/dev/tests/api-functional/phpunit_graphql.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/api-functional/phpunit_graphql.xml.dist -------------------------------------------------------------------------------- /src/dev/tests/api-functional/phpunit_rest.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/api-functional/phpunit_rest.xml.dist -------------------------------------------------------------------------------- /src/dev/tests/api-functional/phpunit_soap.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/api-functional/phpunit_soap.xml.dist -------------------------------------------------------------------------------- /src/dev/tests/error_handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/error_handler.php -------------------------------------------------------------------------------- /src/dev/tests/integration/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/integration/.gitignore -------------------------------------------------------------------------------- /src/dev/tests/integration/bin/magento: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/integration/bin/magento -------------------------------------------------------------------------------- /src/dev/tests/integration/etc/config-global.php.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/integration/etc/config-global.php.dist -------------------------------------------------------------------------------- /src/dev/tests/integration/etc/di/preferences/ce.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/integration/etc/di/preferences/ce.php -------------------------------------------------------------------------------- /src/dev/tests/integration/framework/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/integration/framework/autoload.php -------------------------------------------------------------------------------- /src/dev/tests/integration/framework/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/integration/framework/bootstrap.php -------------------------------------------------------------------------------- /src/dev/tests/integration/framework/tests/unit/testsuite/Magento/Test/Bootstrap/_files/0: -------------------------------------------------------------------------------- 1 | File with the name "0" 2 | -------------------------------------------------------------------------------- /src/dev/tests/integration/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/integration/phpunit.xml.dist -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Catalog/_files/magento_empty.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/disable_product.csv: -------------------------------------------------------------------------------- 1 | "sku", "product_online" 2 | "simple", "0" 3 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/enable_product.csv: -------------------------------------------------------------------------------- 1 | "sku", "product_online" 2 | "simple", "1" 3 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/CatalogImportExport/Model/Import/_files/magento_additional_image_error.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Cms/_files/text.txt: -------------------------------------------------------------------------------- 1 | just a text 2 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Deploy/_files/zoom3/web/css/local.css: -------------------------------------------------------------------------------- 1 | p{align:center} 2 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Downloadable/Controller/Adminhtml/_files/sample.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/bar/en_az/a.csv: -------------------------------------------------------------------------------- 1 | one,1 2 | two,2 -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/bar/en_az/b.csv: -------------------------------------------------------------------------------- 1 | three,3 2 | four,4 -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/first/en_az/1.csv: -------------------------------------------------------------------------------- 1 | three,3 2 | one,1.0 -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/foo/en_au/1.csv: -------------------------------------------------------------------------------- 1 | one,1.0 2 | five,5.0 -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/foo/en_au/2.csv: -------------------------------------------------------------------------------- 1 | six,6.0 -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/my/ru_ru/1.csv: -------------------------------------------------------------------------------- 1 | three,3 2 | one,1.0 -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/second/en_gb/1.csv: -------------------------------------------------------------------------------- 1 | one,1 2 | two,2 -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/theirs/ru_ru/1.csv: -------------------------------------------------------------------------------- 1 | one,1 2 | two,2 -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/language/One.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/language/one.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/library/One.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/module/One.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/App/Utility/_files/fixtures/theme/One.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/default/MagentoFrameworkCssTest_Module/web/1.file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/default/web/1.file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/parent/MagentoFrameworkCssTest_Module/web/1.file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/design/frontend/Test/parent/MagentoFrameworkCssTest_Second/web/1.file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/lib/web/1.file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/Css/PreProcessor/_files/lib/web/2.file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/foo/bar/baz/file_one.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/foo/bar/file_two.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/foo/file_three.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/Filesystem/_files/popup.csv: -------------------------------------------------------------------------------- 1 | var myData = 5; -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/Image/_files/empty.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/Image/_files/notanimage.txt: -------------------------------------------------------------------------------- 1 | Not an image. 2 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/custom_theme/i18n/en_US.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Framework/View/_files/fallback/design/frontend/Vendor/default/i18n/en_US.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/ImportExport/Controller/Adminhtml/Import/_files/test.txt: -------------------------------------------------------------------------------- 1 | Import test file 2 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/MediaStorage/_files/test_file.html: -------------------------------------------------------------------------------- 1 | test data 2 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/edition: -------------------------------------------------------------------------------- 1 | ce 2 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Setup/Console/Command/_files/output/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/area_two/Vendor/theme_one/web/file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/design_area/Vendor/theme_one/web/file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Catalog/theme_file.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Magento_Catalog/theme_file_with_2_dots..txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/Namespace_Module/web/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/i18n/fr_FR/logo.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/images/logo.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Theme/Model/_files/design/frontend/Test/default/web/images/logo_email.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/integration/testsuite/Magento/Translation/Model/_files/media/some_file.txt: -------------------------------------------------------------------------------- 1 | some_content -------------------------------------------------------------------------------- /src/dev/tests/integration/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | /* 2 | !/.gitignore 3 | -------------------------------------------------------------------------------- /src/dev/tests/js/jasmine/assets/apply/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/js/jasmine/assets/apply/config.json -------------------------------------------------------------------------------- /src/dev/tests/js/jasmine/assets/apply/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/js/jasmine/assets/apply/index.js -------------------------------------------------------------------------------- /src/dev/tests/js/jasmine/assets/gallery/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/js/jasmine/assets/gallery/config.json -------------------------------------------------------------------------------- /src/dev/tests/js/jasmine/assets/jsbuild/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/js/jasmine/assets/jsbuild/config.js -------------------------------------------------------------------------------- /src/dev/tests/js/jasmine/assets/jsbuild/external.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/js/jasmine/assets/jsbuild/external.js -------------------------------------------------------------------------------- /src/dev/tests/js/jasmine/assets/jsbuild/local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/js/jasmine/assets/jsbuild/local.js -------------------------------------------------------------------------------- /src/dev/tests/js/jasmine/assets/script/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/js/jasmine/assets/script/config.json -------------------------------------------------------------------------------- /src/dev/tests/js/jasmine/assets/script/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/js/jasmine/assets/script/index.js -------------------------------------------------------------------------------- /src/dev/tests/js/jasmine/assets/text/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/js/jasmine/assets/text/config.js -------------------------------------------------------------------------------- /src/dev/tests/js/jasmine/assets/text/external.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/js/jasmine/assets/text/external.html -------------------------------------------------------------------------------- /src/dev/tests/js/jasmine/assets/text/local.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/js/jasmine/assets/text/local.html -------------------------------------------------------------------------------- /src/dev/tests/js/jasmine/assets/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/js/jasmine/assets/tools.js -------------------------------------------------------------------------------- /src/dev/tests/js/jasmine/require.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/js/jasmine/require.conf.js -------------------------------------------------------------------------------- /src/dev/tests/js/jasmine/spec_runner/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/js/jasmine/spec_runner/index.js -------------------------------------------------------------------------------- /src/dev/tests/js/jasmine/spec_runner/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/js/jasmine/spec_runner/settings.json -------------------------------------------------------------------------------- /src/dev/tests/js/jasmine/spec_runner/tasks/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/js/jasmine/spec_runner/tasks/connect.js -------------------------------------------------------------------------------- /src/dev/tests/js/jasmine/spec_runner/tasks/jasmine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/js/jasmine/spec_runner/tasks/jasmine.js -------------------------------------------------------------------------------- /src/dev/tests/js/jasmine/spec_runner/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/js/jasmine/spec_runner/template.html -------------------------------------------------------------------------------- /src/dev/tests/js/jasmine/tests/lib/mage/apply.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/js/jasmine/tests/lib/mage/apply.test.js -------------------------------------------------------------------------------- /src/dev/tests/js/jasmine/tests/lib/mage/form.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/js/jasmine/tests/lib/mage/form.test.js -------------------------------------------------------------------------------- /src/dev/tests/js/jasmine/tests/lib/mage/menu.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/js/jasmine/tests/lib/mage/menu.test.js -------------------------------------------------------------------------------- /src/dev/tests/js/jasmine/tests/lib/mage/misc.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/js/jasmine/tests/lib/mage/misc.test.js -------------------------------------------------------------------------------- /src/dev/tests/js/jasmine/tests/lib/mage/tabs.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/js/jasmine/tests/lib/mage/tabs.test.js -------------------------------------------------------------------------------- /src/dev/tests/setup-integration/.gitignore: -------------------------------------------------------------------------------- 1 | /*.xml 2 | /var/ 3 | /etc/*.php 4 | /tmp 5 | -------------------------------------------------------------------------------- /src/dev/tests/setup-integration/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/setup-integration/phpunit.xml.dist -------------------------------------------------------------------------------- /src/dev/tests/static/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/static/.gitignore -------------------------------------------------------------------------------- /src/dev/tests/static/framework/Magento/ruleset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/static/framework/Magento/ruleset.xml -------------------------------------------------------------------------------- /src/dev/tests/static/framework/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/static/framework/autoload.php -------------------------------------------------------------------------------- /src/dev/tests/static/framework/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/static/framework/bootstrap.php -------------------------------------------------------------------------------- /src/dev/tests/static/framework/tests/unit/testsuite/Magento/TestFramework/Inspection/_files/words_finder/interview_with_the_vampire.zip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dev/tests/static/get_github_changes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/static/get_github_changes.php -------------------------------------------------------------------------------- /src/dev/tests/static/phpunit-all.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/static/phpunit-all.xml.dist -------------------------------------------------------------------------------- /src/dev/tests/static/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/static/phpunit.xml.dist -------------------------------------------------------------------------------- /src/dev/tests/static/testsuite/Magento/Test/Integrity/_files/blacklist/composer_module_names.txt: -------------------------------------------------------------------------------- 1 | magento/module-aws-s3 2 | -------------------------------------------------------------------------------- /src/dev/tests/static/testsuite/Magento/Test/_files/.gitignore: -------------------------------------------------------------------------------- 1 | /* 2 | !/.gitignore -------------------------------------------------------------------------------- /src/dev/tests/unit/.gitignore: -------------------------------------------------------------------------------- 1 | /phpunit.xml 2 | /var/allure-results/ 3 | -------------------------------------------------------------------------------- /src/dev/tests/unit/framework/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/unit/framework/autoload.php -------------------------------------------------------------------------------- /src/dev/tests/unit/framework/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/unit/framework/bootstrap.php -------------------------------------------------------------------------------- /src/dev/tests/unit/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tests/unit/phpunit.xml.dist -------------------------------------------------------------------------------- /src/dev/tests/unit/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | /* 2 | !/.gitignore 3 | -------------------------------------------------------------------------------- /src/dev/tools/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/bootstrap.php -------------------------------------------------------------------------------- /src/dev/tools/dynamicReturnTypeMeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/dynamicReturnTypeMeta.json -------------------------------------------------------------------------------- /src/dev/tools/grunt/assets/legacy-build/shim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/assets/legacy-build/shim.js -------------------------------------------------------------------------------- /src/dev/tools/grunt/configs/autoprefixer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/configs/autoprefixer.json -------------------------------------------------------------------------------- /src/dev/tools/grunt/configs/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/configs/clean.js -------------------------------------------------------------------------------- /src/dev/tools/grunt/configs/combo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/configs/combo.js -------------------------------------------------------------------------------- /src/dev/tools/grunt/configs/concat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/configs/concat.json -------------------------------------------------------------------------------- /src/dev/tools/grunt/configs/cssmin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/configs/cssmin.json -------------------------------------------------------------------------------- /src/dev/tools/grunt/configs/eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/configs/eslint.json -------------------------------------------------------------------------------- /src/dev/tools/grunt/configs/exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/configs/exec.js -------------------------------------------------------------------------------- /src/dev/tools/grunt/configs/imagemin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/configs/imagemin.js -------------------------------------------------------------------------------- /src/dev/tools/grunt/configs/jscs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/configs/jscs.json -------------------------------------------------------------------------------- /src/dev/tools/grunt/configs/less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/configs/less.js -------------------------------------------------------------------------------- /src/dev/tools/grunt/configs/mage-minify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/configs/mage-minify.json -------------------------------------------------------------------------------- /src/dev/tools/grunt/configs/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/configs/path.js -------------------------------------------------------------------------------- /src/dev/tools/grunt/configs/replace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/configs/replace.js -------------------------------------------------------------------------------- /src/dev/tools/grunt/configs/styledocco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/configs/styledocco.json -------------------------------------------------------------------------------- /src/dev/tools/grunt/configs/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/configs/themes.js -------------------------------------------------------------------------------- /src/dev/tools/grunt/configs/usebanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/configs/usebanner.js -------------------------------------------------------------------------------- /src/dev/tools/grunt/configs/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/configs/watch.js -------------------------------------------------------------------------------- /src/dev/tools/grunt/tasks/black-list-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/tasks/black-list-generator.js -------------------------------------------------------------------------------- /src/dev/tools/grunt/tasks/clean-black-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/tasks/clean-black-list.js -------------------------------------------------------------------------------- /src/dev/tools/grunt/tasks/deploy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/tasks/deploy.js -------------------------------------------------------------------------------- /src/dev/tools/grunt/tasks/mage-minify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/tasks/mage-minify.js -------------------------------------------------------------------------------- /src/dev/tools/grunt/tasks/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/tasks/static.js -------------------------------------------------------------------------------- /src/dev/tools/grunt/tools/collect-validation-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/tools/collect-validation-files.js -------------------------------------------------------------------------------- /src/dev/tools/grunt/tools/files-router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/tools/files-router.js -------------------------------------------------------------------------------- /src/dev/tools/grunt/tools/fs-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/dev/tools/grunt/tools/fs-tools.js -------------------------------------------------------------------------------- /src/generated/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/generated/.htaccess -------------------------------------------------------------------------------- /src/grunt-config.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/grunt-config.json.sample -------------------------------------------------------------------------------- /src/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/index.php -------------------------------------------------------------------------------- /src/lib/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/.htaccess -------------------------------------------------------------------------------- /src/lib/internal/GnuFreeFont/FreeSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/internal/GnuFreeFont/FreeSerif.ttf -------------------------------------------------------------------------------- /src/lib/internal/GnuFreeFont/FreeSerifBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/internal/GnuFreeFont/FreeSerifBold.ttf -------------------------------------------------------------------------------- /src/lib/internal/GnuFreeFont/FreeSerifItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/internal/GnuFreeFont/FreeSerifItalic.ttf -------------------------------------------------------------------------------- /src/lib/internal/LinLibertineFont/Bugs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/internal/LinLibertineFont/Bugs -------------------------------------------------------------------------------- /src/lib/internal/LinLibertineFont/ChangeLog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/internal/LinLibertineFont/ChangeLog.txt -------------------------------------------------------------------------------- /src/lib/internal/LinLibertineFont/GPL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/internal/LinLibertineFont/GPL.txt -------------------------------------------------------------------------------- /src/lib/internal/LinLibertineFont/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/internal/LinLibertineFont/LICENCE.txt -------------------------------------------------------------------------------- /src/lib/internal/LinLibertineFont/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/internal/LinLibertineFont/OFL.txt -------------------------------------------------------------------------------- /src/lib/internal/LinLibertineFont/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/internal/LinLibertineFont/Readme -------------------------------------------------------------------------------- /src/lib/internal/LinLibertineFont/Readme-TEX.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/internal/LinLibertineFont/Readme-TEX.txt -------------------------------------------------------------------------------- /src/lib/web/FormData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/FormData.js -------------------------------------------------------------------------------- /src/lib/web/MutationObserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/MutationObserver.js -------------------------------------------------------------------------------- /src/lib/web/blank.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/web/chartjs/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/chartjs/Chart.min.js -------------------------------------------------------------------------------- /src/lib/web/css/docs/actions-toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/actions-toolbar.html -------------------------------------------------------------------------------- /src/lib/web/css/docs/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/breadcrumbs.html -------------------------------------------------------------------------------- /src/lib/web/css/docs/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/buttons.html -------------------------------------------------------------------------------- /src/lib/web/css/docs/components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/components.html -------------------------------------------------------------------------------- /src/lib/web/css/docs/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/docs.css -------------------------------------------------------------------------------- /src/lib/web/css/docs/docs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/docs.html -------------------------------------------------------------------------------- /src/lib/web/css/docs/dropdowns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/dropdowns.html -------------------------------------------------------------------------------- /src/lib/web/css/docs/forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/forms.html -------------------------------------------------------------------------------- /src/lib/web/css/docs/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/icons.html -------------------------------------------------------------------------------- /src/lib/web/css/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/index.html -------------------------------------------------------------------------------- /src/lib/web/css/docs/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/layout.html -------------------------------------------------------------------------------- /src/lib/web/css/docs/lib.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/lib.html -------------------------------------------------------------------------------- /src/lib/web/css/docs/loaders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/loaders.html -------------------------------------------------------------------------------- /src/lib/web/css/docs/messages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/messages.html -------------------------------------------------------------------------------- /src/lib/web/css/docs/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/pages.html -------------------------------------------------------------------------------- /src/lib/web/css/docs/popups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/popups.html -------------------------------------------------------------------------------- /src/lib/web/css/docs/rating.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/rating.html -------------------------------------------------------------------------------- /src/lib/web/css/docs/resets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/resets.html -------------------------------------------------------------------------------- /src/lib/web/css/docs/responsive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/responsive.html -------------------------------------------------------------------------------- /src/lib/web/css/docs/sections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/sections.html -------------------------------------------------------------------------------- /src/lib/web/css/docs/source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/source/README.md -------------------------------------------------------------------------------- /src/lib/web/css/docs/source/_actions-toolbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/source/_actions-toolbar.less -------------------------------------------------------------------------------- /src/lib/web/css/docs/source/_breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/source/_breadcrumbs.less -------------------------------------------------------------------------------- /src/lib/web/css/docs/source/_buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/source/_buttons.less -------------------------------------------------------------------------------- /src/lib/web/css/docs/source/_components.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/source/_components.less -------------------------------------------------------------------------------- /src/lib/web/css/docs/source/_dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/source/_dropdowns.less -------------------------------------------------------------------------------- /src/lib/web/css/docs/source/_forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/source/_forms.less -------------------------------------------------------------------------------- /src/lib/web/css/docs/source/_icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/source/_icons.less -------------------------------------------------------------------------------- /src/lib/web/css/docs/source/_layout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/source/_layout.less -------------------------------------------------------------------------------- /src/lib/web/css/docs/source/_lib.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/source/_lib.less -------------------------------------------------------------------------------- /src/lib/web/css/docs/source/_loaders.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/source/_loaders.less -------------------------------------------------------------------------------- /src/lib/web/css/docs/source/_messages.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/source/_messages.less -------------------------------------------------------------------------------- /src/lib/web/css/docs/source/_pages.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/source/_pages.less -------------------------------------------------------------------------------- /src/lib/web/css/docs/source/_popups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/source/_popups.less -------------------------------------------------------------------------------- /src/lib/web/css/docs/source/_rating.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/source/_rating.less -------------------------------------------------------------------------------- /src/lib/web/css/docs/source/_resets.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/source/_resets.less -------------------------------------------------------------------------------- /src/lib/web/css/docs/source/_responsive.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/source/_responsive.less -------------------------------------------------------------------------------- /src/lib/web/css/docs/source/_sections.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/source/_sections.less -------------------------------------------------------------------------------- /src/lib/web/css/docs/source/_tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/source/_tables.less -------------------------------------------------------------------------------- /src/lib/web/css/docs/source/_tooltips.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/source/_tooltips.less -------------------------------------------------------------------------------- /src/lib/web/css/docs/source/_typography.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/source/_typography.less -------------------------------------------------------------------------------- /src/lib/web/css/docs/source/_utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/source/_utilities.less -------------------------------------------------------------------------------- /src/lib/web/css/docs/source/_variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/source/_variables.less -------------------------------------------------------------------------------- /src/lib/web/css/docs/source/docs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/source/docs.less -------------------------------------------------------------------------------- /src/lib/web/css/docs/source/js/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/source/js/dropdown.js -------------------------------------------------------------------------------- /src/lib/web/css/docs/tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/tables.html -------------------------------------------------------------------------------- /src/lib/web/css/docs/tooltips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/tooltips.html -------------------------------------------------------------------------------- /src/lib/web/css/docs/typography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/typography.html -------------------------------------------------------------------------------- /src/lib/web/css/docs/utilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/utilities.html -------------------------------------------------------------------------------- /src/lib/web/css/docs/variables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/docs/variables.html -------------------------------------------------------------------------------- /src/lib/web/css/source/_email-variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/_email-variables.less -------------------------------------------------------------------------------- /src/lib/web/css/source/_extend.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/_extend.less -------------------------------------------------------------------------------- /src/lib/web/css/source/_theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/_theme.less -------------------------------------------------------------------------------- /src/lib/web/css/source/_variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/_variables.less -------------------------------------------------------------------------------- /src/lib/web/css/source/_widgets.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/_widgets.less -------------------------------------------------------------------------------- /src/lib/web/css/source/components/_modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/components/_modals.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/_actions-toolbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/_actions-toolbar.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/_breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/_breadcrumbs.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/_buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/_buttons.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/_dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/_dropdowns.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/_forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/_forms.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/_grids.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/_grids.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/_icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/_icons.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/_layout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/_layout.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/_lib.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/_lib.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/_loaders.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/_loaders.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/_messages.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/_messages.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/_navigation.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/_navigation.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/_pages.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/_pages.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/_popups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/_popups.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/_rating.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/_rating.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/_resets.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/_resets.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/_responsive.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/_responsive.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/_sections.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/_sections.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/_tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/_tables.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/_tooltips.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/_tooltips.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/_typography.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/_typography.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/_utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/_utilities.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/_variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/_variables.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/variables/_buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/variables/_buttons.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/variables/_colors.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/variables/_colors.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/variables/_components.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/variables/_components.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/variables/_dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/variables/_dropdowns.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/variables/_email.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/variables/_email.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/variables/_forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/variables/_forms.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/variables/_icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/variables/_icons.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/variables/_layout.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/variables/_layout.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/variables/_loaders.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/variables/_loaders.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/variables/_messages.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/variables/_messages.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/variables/_navigation.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/variables/_navigation.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/variables/_pages.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/variables/_pages.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/variables/_popups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/variables/_popups.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/variables/_rating.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/variables/_rating.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/variables/_responsive.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/variables/_responsive.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/variables/_sections.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/variables/_sections.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/variables/_structure.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/variables/_structure.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/variables/_tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/variables/_tables.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/variables/_tooltips.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/variables/_tooltips.less -------------------------------------------------------------------------------- /src/lib/web/css/source/lib/variables/_typography.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/css/source/lib/variables/_typography.less -------------------------------------------------------------------------------- /src/lib/web/es6-collections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/es6-collections.js -------------------------------------------------------------------------------- /src/lib/web/extjs/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/extjs/defaults.js -------------------------------------------------------------------------------- /src/lib/web/extjs/ext-tree-checkbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/extjs/ext-tree-checkbox.js -------------------------------------------------------------------------------- /src/lib/web/extjs/ext-tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/extjs/ext-tree.js -------------------------------------------------------------------------------- /src/lib/web/extjs/resources/css/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/extjs/resources/css/README.txt -------------------------------------------------------------------------------- /src/lib/web/extjs/resources/css/ext-all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/extjs/resources/css/ext-all.css -------------------------------------------------------------------------------- /src/lib/web/extjs/resources/css/ytheme-magento.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/extjs/resources/css/ytheme-magento.css -------------------------------------------------------------------------------- /src/lib/web/extjs/resources/images/aero/menu/menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/extjs/resources/images/aero/menu/menu.gif -------------------------------------------------------------------------------- /src/lib/web/extjs/resources/images/aero/qtip/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/extjs/resources/images/aero/qtip/bg.gif -------------------------------------------------------------------------------- /src/lib/web/extjs/resources/images/aero/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/extjs/resources/images/aero/s.gif -------------------------------------------------------------------------------- /src/lib/web/extjs/resources/images/default/box/l.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/extjs/resources/images/default/box/l.gif -------------------------------------------------------------------------------- /src/lib/web/extjs/resources/images/default/box/r.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/extjs/resources/images/default/box/r.gif -------------------------------------------------------------------------------- /src/lib/web/extjs/resources/images/default/box/tb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/extjs/resources/images/default/box/tb.gif -------------------------------------------------------------------------------- /src/lib/web/extjs/resources/images/default/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/extjs/resources/images/default/s.gif -------------------------------------------------------------------------------- /src/lib/web/extjs/resources/images/default/shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/extjs/resources/images/default/shadow.png -------------------------------------------------------------------------------- /src/lib/web/extjs/resources/images/gray/qtip/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/extjs/resources/images/gray/qtip/bg.gif -------------------------------------------------------------------------------- /src/lib/web/extjs/resources/images/gray/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/extjs/resources/images/gray/s.gif -------------------------------------------------------------------------------- /src/lib/web/extjs/resources/images/vista/s.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/extjs/resources/images/vista/s.gif -------------------------------------------------------------------------------- /src/lib/web/fonts/Blank-Theme-Icons/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/fonts/Blank-Theme-Icons/selection.json -------------------------------------------------------------------------------- /src/lib/web/fonts/MUI-Icons/MUI-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/fonts/MUI-Icons/MUI-Icons.woff -------------------------------------------------------------------------------- /src/lib/web/fonts/MUI-Icons/MUI-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/fonts/MUI-Icons/MUI-Icons.woff2 -------------------------------------------------------------------------------- /src/lib/web/fonts/UX-Icons/UX-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/fonts/UX-Icons/UX-Icons.woff -------------------------------------------------------------------------------- /src/lib/web/fonts/opensans/bold/opensans-700.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/fonts/opensans/bold/opensans-700.woff -------------------------------------------------------------------------------- /src/lib/web/fonts/opensans/bold/opensans-700.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/fonts/opensans/bold/opensans-700.woff2 -------------------------------------------------------------------------------- /src/lib/web/fonts/opensans/light/opensans-300.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/fonts/opensans/light/opensans-300.woff -------------------------------------------------------------------------------- /src/lib/web/fonts/opensans/light/opensans-300.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/fonts/opensans/light/opensans-300.woff2 -------------------------------------------------------------------------------- /src/lib/web/fotorama/fotorama.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/fotorama/fotorama.js -------------------------------------------------------------------------------- /src/lib/web/i18n/en_US.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/i18n/en_US.csv -------------------------------------------------------------------------------- /src/lib/web/images/bkg_gallery_thumbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/images/bkg_gallery_thumbs.png -------------------------------------------------------------------------------- /src/lib/web/images/blank-theme-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/images/blank-theme-icons.png -------------------------------------------------------------------------------- /src/lib/web/images/cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/images/cards.png -------------------------------------------------------------------------------- /src/lib/web/images/debug_bkg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/images/debug_bkg.png -------------------------------------------------------------------------------- /src/lib/web/images/loader-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/images/loader-1.gif -------------------------------------------------------------------------------- /src/lib/web/images/loader-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/images/loader-2.gif -------------------------------------------------------------------------------- /src/lib/web/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/images/logo.svg -------------------------------------------------------------------------------- /src/lib/web/images/magento-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/images/magento-logo.svg -------------------------------------------------------------------------------- /src/lib/web/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/images/spacer.gif -------------------------------------------------------------------------------- /src/lib/web/images/sprite-gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/images/sprite-gallery.png -------------------------------------------------------------------------------- /src/lib/web/images/sprite-gallery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/images/sprite-gallery.svg -------------------------------------------------------------------------------- /src/lib/web/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery.js -------------------------------------------------------------------------------- /src/lib/web/jquery/colorpicker/css/colorpicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/colorpicker/css/colorpicker.css -------------------------------------------------------------------------------- /src/lib/web/jquery/colorpicker/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/colorpicker/images/blank.gif -------------------------------------------------------------------------------- /src/lib/web/jquery/colorpicker/images/select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/colorpicker/images/select.png -------------------------------------------------------------------------------- /src/lib/web/jquery/colorpicker/images/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/colorpicker/images/select2.png -------------------------------------------------------------------------------- /src/lib/web/jquery/colorpicker/images/slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/colorpicker/images/slider.png -------------------------------------------------------------------------------- /src/lib/web/jquery/colorpicker/js/colorpicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/colorpicker/js/colorpicker.js -------------------------------------------------------------------------------- /src/lib/web/jquery/compat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/compat.js -------------------------------------------------------------------------------- /src/lib/web/jquery/fileUploader/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/fileUploader/LICENSE.txt -------------------------------------------------------------------------------- /src/lib/web/jquery/fileUploader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/fileUploader/README.md -------------------------------------------------------------------------------- /src/lib/web/jquery/fileUploader/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/fileUploader/SECURITY.md -------------------------------------------------------------------------------- /src/lib/web/jquery/fileUploader/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/fileUploader/img/loading.gif -------------------------------------------------------------------------------- /src/lib/web/jquery/fileUploader/img/progressbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/fileUploader/img/progressbar.gif -------------------------------------------------------------------------------- /src/lib/web/jquery/jquery-migrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jquery-migrate.js -------------------------------------------------------------------------------- /src/lib/web/jquery/jquery-ui-1.9.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jquery-ui-1.9.2.js -------------------------------------------------------------------------------- /src/lib/web/jquery/jquery-ui-timepicker-addon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jquery-ui-timepicker-addon.js -------------------------------------------------------------------------------- /src/lib/web/jquery/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jquery-ui.js -------------------------------------------------------------------------------- /src/lib/web/jquery/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jquery.cookie.js -------------------------------------------------------------------------------- /src/lib/web/jquery/jquery.details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jquery.details.js -------------------------------------------------------------------------------- /src/lib/web/jquery/jquery.hoverIntent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jquery.hoverIntent.js -------------------------------------------------------------------------------- /src/lib/web/jquery/jquery.metadata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jquery.metadata.js -------------------------------------------------------------------------------- /src/lib/web/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jquery.min.js -------------------------------------------------------------------------------- /src/lib/web/jquery/jquery.mobile.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jquery.mobile.custom.js -------------------------------------------------------------------------------- /src/lib/web/jquery/jquery.parsequery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jquery.parsequery.js -------------------------------------------------------------------------------- /src/lib/web/jquery/jquery.storageapi.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jquery.storageapi.min.js -------------------------------------------------------------------------------- /src/lib/web/jquery/jquery.tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jquery.tabs.js -------------------------------------------------------------------------------- /src/lib/web/jquery/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jquery.validate.js -------------------------------------------------------------------------------- /src/lib/web/jquery/jstree/jquery.hotkeys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jstree/jquery.hotkeys.js -------------------------------------------------------------------------------- /src/lib/web/jquery/jstree/jquery.jstree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jstree/jquery.jstree.js -------------------------------------------------------------------------------- /src/lib/web/jquery/jstree/themes/apple/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jstree/themes/apple/bg.jpg -------------------------------------------------------------------------------- /src/lib/web/jquery/jstree/themes/apple/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jstree/themes/apple/d.png -------------------------------------------------------------------------------- /src/lib/web/jquery/jstree/themes/apple/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jstree/themes/apple/style.css -------------------------------------------------------------------------------- /src/lib/web/jquery/jstree/themes/apple/throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jstree/themes/apple/throbber.gif -------------------------------------------------------------------------------- /src/lib/web/jquery/jstree/themes/classic/d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jstree/themes/classic/d.gif -------------------------------------------------------------------------------- /src/lib/web/jquery/jstree/themes/classic/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jstree/themes/classic/d.png -------------------------------------------------------------------------------- /src/lib/web/jquery/jstree/themes/classic/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jstree/themes/classic/style.css -------------------------------------------------------------------------------- /src/lib/web/jquery/jstree/themes/default-rtl/d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jstree/themes/default-rtl/d.gif -------------------------------------------------------------------------------- /src/lib/web/jquery/jstree/themes/default-rtl/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jstree/themes/default-rtl/d.png -------------------------------------------------------------------------------- /src/lib/web/jquery/jstree/themes/default/d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jstree/themes/default/d.gif -------------------------------------------------------------------------------- /src/lib/web/jquery/jstree/themes/default/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jstree/themes/default/d.png -------------------------------------------------------------------------------- /src/lib/web/jquery/jstree/themes/default/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/jstree/themes/default/style.css -------------------------------------------------------------------------------- /src/lib/web/jquery/patches/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/patches/jquery-ui.js -------------------------------------------------------------------------------- /src/lib/web/jquery/patches/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/patches/jquery.js -------------------------------------------------------------------------------- /src/lib/web/jquery/spectrum/spectrum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/spectrum/spectrum.js -------------------------------------------------------------------------------- /src/lib/web/jquery/spectrum/tinycolor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/spectrum/tinycolor.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/accordion.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/autocomplete.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/button.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/core.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/datepicker.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/dialog.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/draggable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/draggable.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/droppable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/droppable.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/effect-blind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/effect-blind.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/effect-bounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/effect-bounce.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/effect-clip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/effect-clip.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/effect-drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/effect-drop.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/effect-explode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/effect-explode.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/effect-fade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/effect-fade.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/effect-fold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/effect-fold.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/effect-highlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/effect-highlight.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/effect-pulsate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/effect-pulsate.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/effect-scale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/effect-scale.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/effect-shake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/effect-shake.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/effect-slide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/effect-slide.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/effect-transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/effect-transfer.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/effect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/effect.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/menu.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/mouse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/mouse.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/position.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/position.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/progressbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/progressbar.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/resizable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/resizable.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/selectable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/selectable.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/slider.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/sortable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/sortable.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/spinner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/spinner.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/tabs.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/timepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/timepicker.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/tooltip.js -------------------------------------------------------------------------------- /src/lib/web/jquery/ui-modules/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/jquery/ui-modules/widget.js -------------------------------------------------------------------------------- /src/lib/web/knockoutjs/knockout-es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/knockoutjs/knockout-es5.js -------------------------------------------------------------------------------- /src/lib/web/knockoutjs/knockout-fast-foreach.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/knockoutjs/knockout-fast-foreach.js -------------------------------------------------------------------------------- /src/lib/web/knockoutjs/knockout-repeat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/knockoutjs/knockout-repeat.js -------------------------------------------------------------------------------- /src/lib/web/knockoutjs/knockout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/knockoutjs/knockout.js -------------------------------------------------------------------------------- /src/lib/web/legacy-build.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/legacy-build.min.js -------------------------------------------------------------------------------- /src/lib/web/less/config.less.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/less/config.less.js -------------------------------------------------------------------------------- /src/lib/web/less/less.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/less/less.min.js -------------------------------------------------------------------------------- /src/lib/web/lib/ccard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/lib/ccard.js -------------------------------------------------------------------------------- /src/lib/web/lib/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/lib/storage.js -------------------------------------------------------------------------------- /src/lib/web/mage/accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/accordion.js -------------------------------------------------------------------------------- /src/lib/web/mage/adminhtml/accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/adminhtml/accordion.js -------------------------------------------------------------------------------- /src/lib/web/mage/adminhtml/backup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/adminhtml/backup.js -------------------------------------------------------------------------------- /src/lib/web/mage/adminhtml/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/adminhtml/browser.js -------------------------------------------------------------------------------- /src/lib/web/mage/adminhtml/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/adminhtml/events.js -------------------------------------------------------------------------------- /src/lib/web/mage/adminhtml/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/adminhtml/form.js -------------------------------------------------------------------------------- /src/lib/web/mage/adminhtml/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/adminhtml/globals.js -------------------------------------------------------------------------------- /src/lib/web/mage/adminhtml/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/adminhtml/grid.js -------------------------------------------------------------------------------- /src/lib/web/mage/adminhtml/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/adminhtml/tools.js -------------------------------------------------------------------------------- /src/lib/web/mage/adminhtml/varienLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/adminhtml/varienLoader.js -------------------------------------------------------------------------------- /src/lib/web/mage/adminhtml/wysiwyg/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/adminhtml/wysiwyg/events.js -------------------------------------------------------------------------------- /src/lib/web/mage/adminhtml/wysiwyg/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/adminhtml/wysiwyg/widget.js -------------------------------------------------------------------------------- /src/lib/web/mage/app/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/app/config.js -------------------------------------------------------------------------------- /src/lib/web/mage/apply/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/apply/main.js -------------------------------------------------------------------------------- /src/lib/web/mage/apply/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/apply/scripts.js -------------------------------------------------------------------------------- /src/lib/web/mage/backend/action-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/backend/action-link.js -------------------------------------------------------------------------------- /src/lib/web/mage/backend/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/backend/bootstrap.js -------------------------------------------------------------------------------- /src/lib/web/mage/backend/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/backend/button.js -------------------------------------------------------------------------------- /src/lib/web/mage/backend/editablemultiselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/backend/editablemultiselect.js -------------------------------------------------------------------------------- /src/lib/web/mage/backend/floating-header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/backend/floating-header.js -------------------------------------------------------------------------------- /src/lib/web/mage/backend/form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/backend/form.js -------------------------------------------------------------------------------- /src/lib/web/mage/backend/jstree-mixin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/backend/jstree-mixin.js -------------------------------------------------------------------------------- /src/lib/web/mage/backend/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/backend/menu.js -------------------------------------------------------------------------------- /src/lib/web/mage/backend/notification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/backend/notification.js -------------------------------------------------------------------------------- /src/lib/web/mage/backend/suggest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/backend/suggest.js -------------------------------------------------------------------------------- /src/lib/web/mage/backend/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/backend/tabs.js -------------------------------------------------------------------------------- /src/lib/web/mage/backend/tree-suggest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/backend/tree-suggest.js -------------------------------------------------------------------------------- /src/lib/web/mage/backend/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/backend/validation.js -------------------------------------------------------------------------------- /src/lib/web/mage/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/bootstrap.js -------------------------------------------------------------------------------- /src/lib/web/mage/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/calendar.css -------------------------------------------------------------------------------- /src/lib/web/mage/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/calendar.js -------------------------------------------------------------------------------- /src/lib/web/mage/captcha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/captcha.js -------------------------------------------------------------------------------- /src/lib/web/mage/collapsible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/collapsible.js -------------------------------------------------------------------------------- /src/lib/web/mage/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/common.js -------------------------------------------------------------------------------- /src/lib/web/mage/cookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/cookies.js -------------------------------------------------------------------------------- /src/lib/web/mage/dataPost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/dataPost.js -------------------------------------------------------------------------------- /src/lib/web/mage/decorate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/decorate.js -------------------------------------------------------------------------------- /src/lib/web/mage/deletable-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/deletable-item.js -------------------------------------------------------------------------------- /src/lib/web/mage/dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/dialog.js -------------------------------------------------------------------------------- /src/lib/web/mage/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/dropdown.js -------------------------------------------------------------------------------- /src/lib/web/mage/dropdown_old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/dropdown_old.js -------------------------------------------------------------------------------- /src/lib/web/mage/dropdowns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/dropdowns.js -------------------------------------------------------------------------------- /src/lib/web/mage/edit-trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/edit-trigger.js -------------------------------------------------------------------------------- /src/lib/web/mage/fieldset-controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/fieldset-controls.js -------------------------------------------------------------------------------- /src/lib/web/mage/gallery/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/gallery/gallery.html -------------------------------------------------------------------------------- /src/lib/web/mage/gallery/gallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/gallery/gallery.js -------------------------------------------------------------------------------- /src/lib/web/mage/gallery/gallery.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/gallery/gallery.less -------------------------------------------------------------------------------- /src/lib/web/mage/gallery/gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/gallery/gallery.png -------------------------------------------------------------------------------- /src/lib/web/mage/gallery/module/_extends.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/gallery/module/_extends.less -------------------------------------------------------------------------------- /src/lib/web/mage/gallery/module/_focus.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/gallery/module/_focus.less -------------------------------------------------------------------------------- /src/lib/web/mage/gallery/module/_fullscreen.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/gallery/module/_fullscreen.less -------------------------------------------------------------------------------- /src/lib/web/mage/gallery/module/_mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/gallery/module/_mixins.less -------------------------------------------------------------------------------- /src/lib/web/mage/gallery/module/_variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/gallery/module/_variables.less -------------------------------------------------------------------------------- /src/lib/web/mage/ie-class-fixer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/ie-class-fixer.js -------------------------------------------------------------------------------- /src/lib/web/mage/item-table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/item-table.js -------------------------------------------------------------------------------- /src/lib/web/mage/layout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/layout.js -------------------------------------------------------------------------------- /src/lib/web/mage/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/list.js -------------------------------------------------------------------------------- /src/lib/web/mage/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/loader.js -------------------------------------------------------------------------------- /src/lib/web/mage/loader_old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/loader_old.js -------------------------------------------------------------------------------- /src/lib/web/mage/mage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/mage.js -------------------------------------------------------------------------------- /src/lib/web/mage/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/menu.js -------------------------------------------------------------------------------- /src/lib/web/mage/msie/file-reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/msie/file-reader.js -------------------------------------------------------------------------------- /src/lib/web/mage/multiselect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/multiselect.html -------------------------------------------------------------------------------- /src/lib/web/mage/multiselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/multiselect.js -------------------------------------------------------------------------------- /src/lib/web/mage/polyfill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/polyfill.js -------------------------------------------------------------------------------- /src/lib/web/mage/popup-window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/popup-window.js -------------------------------------------------------------------------------- /src/lib/web/mage/redirect-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/redirect-url.js -------------------------------------------------------------------------------- /src/lib/web/mage/requirejs/baseUrlResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/requirejs/baseUrlResolver.js -------------------------------------------------------------------------------- /src/lib/web/mage/requirejs/mixins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/requirejs/mixins.js -------------------------------------------------------------------------------- /src/lib/web/mage/requirejs/resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/requirejs/resolver.js -------------------------------------------------------------------------------- /src/lib/web/mage/requirejs/static.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/requirejs/static.js -------------------------------------------------------------------------------- /src/lib/web/mage/requirejs/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/requirejs/text.js -------------------------------------------------------------------------------- /src/lib/web/mage/smart-keyboard-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/smart-keyboard-handler.js -------------------------------------------------------------------------------- /src/lib/web/mage/sticky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/sticky.js -------------------------------------------------------------------------------- /src/lib/web/mage/storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/storage.js -------------------------------------------------------------------------------- /src/lib/web/mage/tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/tabs.js -------------------------------------------------------------------------------- /src/lib/web/mage/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/template.js -------------------------------------------------------------------------------- /src/lib/web/mage/terms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/terms.js -------------------------------------------------------------------------------- /src/lib/web/mage/toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/toggle.js -------------------------------------------------------------------------------- /src/lib/web/mage/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/tooltip.js -------------------------------------------------------------------------------- /src/lib/web/mage/touch-slider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/touch-slider.js -------------------------------------------------------------------------------- /src/lib/web/mage/translate-inline-vde.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/translate-inline-vde.css -------------------------------------------------------------------------------- /src/lib/web/mage/translate-inline-vde.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/translate-inline-vde.js -------------------------------------------------------------------------------- /src/lib/web/mage/translate-inline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/translate-inline.css -------------------------------------------------------------------------------- /src/lib/web/mage/translate-inline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/translate-inline.js -------------------------------------------------------------------------------- /src/lib/web/mage/translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/translate.js -------------------------------------------------------------------------------- /src/lib/web/mage/trim-input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/trim-input.js -------------------------------------------------------------------------------- /src/lib/web/mage/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/url.js -------------------------------------------------------------------------------- /src/lib/web/mage/utils/arrays.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/utils/arrays.js -------------------------------------------------------------------------------- /src/lib/web/mage/utils/compare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/utils/compare.js -------------------------------------------------------------------------------- /src/lib/web/mage/utils/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/utils/main.js -------------------------------------------------------------------------------- /src/lib/web/mage/utils/misc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/utils/misc.js -------------------------------------------------------------------------------- /src/lib/web/mage/utils/objects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/utils/objects.js -------------------------------------------------------------------------------- /src/lib/web/mage/utils/strings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/utils/strings.js -------------------------------------------------------------------------------- /src/lib/web/mage/utils/template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/utils/template.js -------------------------------------------------------------------------------- /src/lib/web/mage/utils/wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/utils/wrapper.js -------------------------------------------------------------------------------- /src/lib/web/mage/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/validation.js -------------------------------------------------------------------------------- /src/lib/web/mage/validation/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/validation/url.js -------------------------------------------------------------------------------- /src/lib/web/mage/validation/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/validation/validation.js -------------------------------------------------------------------------------- /src/lib/web/mage/view/composite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/view/composite.js -------------------------------------------------------------------------------- /src/lib/web/mage/webapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/webapi.js -------------------------------------------------------------------------------- /src/lib/web/mage/zoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/mage/zoom.js -------------------------------------------------------------------------------- /src/lib/web/magnifier/magnifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/magnifier/magnifier.js -------------------------------------------------------------------------------- /src/lib/web/magnifier/magnify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/magnifier/magnify.js -------------------------------------------------------------------------------- /src/lib/web/matchMedia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/matchMedia.js -------------------------------------------------------------------------------- /src/lib/web/modernizr/modernizr.2.0.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/modernizr/modernizr.2.0.6.js -------------------------------------------------------------------------------- /src/lib/web/modernizr/modernizr.details.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/modernizr/modernizr.details.js -------------------------------------------------------------------------------- /src/lib/web/modernizr/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/modernizr/modernizr.js -------------------------------------------------------------------------------- /src/lib/web/moment-timezone-with-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/moment-timezone-with-data.js -------------------------------------------------------------------------------- /src/lib/web/moment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/moment.js -------------------------------------------------------------------------------- /src/lib/web/prototype/prototype-amd.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/lib/web/prototype/prototype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/prototype/prototype.js -------------------------------------------------------------------------------- /src/lib/web/prototype/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/prototype/validation.js -------------------------------------------------------------------------------- /src/lib/web/prototype/window.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/prototype/window.js -------------------------------------------------------------------------------- /src/lib/web/prototype/window_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/prototype/window_readme.txt -------------------------------------------------------------------------------- /src/lib/web/prototype/windows/MIT-LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/prototype/windows/MIT-LICENSE -------------------------------------------------------------------------------- /src/lib/web/prototype/windows/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/prototype/windows/README -------------------------------------------------------------------------------- /src/lib/web/prototype/windows/themes/alert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/prototype/windows/themes/alert.css -------------------------------------------------------------------------------- /src/lib/web/prototype/windows/themes/alert/left.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/prototype/windows/themes/alert/left.gif -------------------------------------------------------------------------------- /src/lib/web/prototype/windows/themes/alert/top.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/prototype/windows/themes/alert/top.gif -------------------------------------------------------------------------------- /src/lib/web/prototype/windows/themes/alert_lite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/prototype/windows/themes/alert_lite.css -------------------------------------------------------------------------------- /src/lib/web/prototype/windows/themes/alphacube.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/prototype/windows/themes/alphacube.css -------------------------------------------------------------------------------- /src/lib/web/prototype/windows/themes/behavior.htc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/prototype/windows/themes/behavior.htc -------------------------------------------------------------------------------- /src/lib/web/prototype/windows/themes/darkX.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/prototype/windows/themes/darkX.css -------------------------------------------------------------------------------- /src/lib/web/prototype/windows/themes/debug.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/prototype/windows/themes/debug.css -------------------------------------------------------------------------------- /src/lib/web/prototype/windows/themes/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/prototype/windows/themes/default.css -------------------------------------------------------------------------------- /src/lib/web/prototype/windows/themes/lighting.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/prototype/windows/themes/lighting.css -------------------------------------------------------------------------------- /src/lib/web/prototype/windows/themes/mac_os_x.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/prototype/windows/themes/mac_os_x.css -------------------------------------------------------------------------------- /src/lib/web/prototype/windows/themes/nuncio.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/prototype/windows/themes/nuncio.css -------------------------------------------------------------------------------- /src/lib/web/prototype/windows/themes/spread.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/prototype/windows/themes/spread.css -------------------------------------------------------------------------------- /src/lib/web/prototype/windows/themes/spread/.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/prototype/windows/themes/spread/.gif -------------------------------------------------------------------------------- /src/lib/web/requirejs/domReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/requirejs/domReady.js -------------------------------------------------------------------------------- /src/lib/web/requirejs/require.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/requirejs/require.js -------------------------------------------------------------------------------- /src/lib/web/requirejs/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/requirejs/text.js -------------------------------------------------------------------------------- /src/lib/web/scriptaculous/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/scriptaculous/builder.js -------------------------------------------------------------------------------- /src/lib/web/scriptaculous/effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/scriptaculous/effects.js -------------------------------------------------------------------------------- /src/lib/web/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/spacer.gif -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/jquery.tinymce.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/jquery.tinymce.min.js -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/langs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/langs/readme.md -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/license.txt -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/plugins/anchor/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/plugins/anchor/plugin.min.js -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/plugins/bbcode/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/plugins/bbcode/plugin.min.js -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/plugins/code/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/plugins/code/plugin.min.js -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/plugins/help/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/plugins/help/img/logo.png -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/plugins/help/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/plugins/help/plugin.min.js -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/plugins/hr/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/plugins/hr/plugin.min.js -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/plugins/image/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/plugins/image/plugin.min.js -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/plugins/link/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/plugins/link/plugin.min.js -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/plugins/lists/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/plugins/lists/plugin.min.js -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/plugins/media/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/plugins/media/plugin.min.js -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/plugins/paste/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/plugins/paste/plugin.min.js -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/plugins/print/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/plugins/print/plugin.min.js -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/plugins/save/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/plugins/save/plugin.min.js -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/plugins/table/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/plugins/table/plugin.min.js -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/plugins/toc/plugin.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/plugins/toc/plugin.min.js -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/skins/lightgray/skin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/skins/lightgray/skin.min.css -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/skins/magento/img/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/skins/magento/img/anchor.gif -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/skins/magento/img/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/skins/magento/img/loader.gif -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/skins/magento/img/object.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/skins/magento/img/object.gif -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/skins/magento/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/skins/magento/img/trans.gif -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/skins/magento/skin.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/skins/magento/skin.min.css -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/themes/inlite/theme.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/themes/inlite/theme.min.js -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/themes/mobile/theme.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/themes/mobile/theme.min.js -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/themes/modern/theme.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/themes/modern/theme.min.js -------------------------------------------------------------------------------- /src/lib/web/tiny_mce_4/tinymce.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/tiny_mce_4/tinymce.min.js -------------------------------------------------------------------------------- /src/lib/web/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/underscore.js -------------------------------------------------------------------------------- /src/lib/web/varien/js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/lib/web/varien/js.js -------------------------------------------------------------------------------- /src/nginx.conf.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/nginx.conf.sample -------------------------------------------------------------------------------- /src/package.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/package.json.sample -------------------------------------------------------------------------------- /src/phpserver/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/phpserver/.htaccess -------------------------------------------------------------------------------- /src/phpserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/phpserver/README.md -------------------------------------------------------------------------------- /src/phpserver/router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/phpserver/router.php -------------------------------------------------------------------------------- /src/pub/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/.htaccess -------------------------------------------------------------------------------- /src/pub/.user.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/.user.ini -------------------------------------------------------------------------------- /src/pub/cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/cron.php -------------------------------------------------------------------------------- /src/pub/errors/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/errors/.htaccess -------------------------------------------------------------------------------- /src/pub/errors/404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/errors/404.php -------------------------------------------------------------------------------- /src/pub/errors/503.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/errors/503.php -------------------------------------------------------------------------------- /src/pub/errors/default/404.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/errors/default/404.phtml -------------------------------------------------------------------------------- /src/pub/errors/default/503.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/errors/default/503.phtml -------------------------------------------------------------------------------- /src/pub/errors/default/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/errors/default/css/styles.css -------------------------------------------------------------------------------- /src/pub/errors/default/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/errors/default/images/favicon.ico -------------------------------------------------------------------------------- /src/pub/errors/default/images/i_msg-error.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/errors/default/images/i_msg-error.gif -------------------------------------------------------------------------------- /src/pub/errors/default/images/i_msg-note.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/errors/default/images/i_msg-note.gif -------------------------------------------------------------------------------- /src/pub/errors/default/images/i_msg-success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/errors/default/images/i_msg-success.gif -------------------------------------------------------------------------------- /src/pub/errors/default/images/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/errors/default/images/logo.gif -------------------------------------------------------------------------------- /src/pub/errors/default/nocache.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/errors/default/nocache.phtml -------------------------------------------------------------------------------- /src/pub/errors/default/page.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/errors/default/page.phtml -------------------------------------------------------------------------------- /src/pub/errors/default/report.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/errors/default/report.phtml -------------------------------------------------------------------------------- /src/pub/errors/design.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/errors/design.xml -------------------------------------------------------------------------------- /src/pub/errors/local.xml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/errors/local.xml.sample -------------------------------------------------------------------------------- /src/pub/errors/noCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/errors/noCache.php -------------------------------------------------------------------------------- /src/pub/errors/processor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/errors/processor.php -------------------------------------------------------------------------------- /src/pub/errors/processorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/errors/processorFactory.php -------------------------------------------------------------------------------- /src/pub/errors/report.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/errors/report.php -------------------------------------------------------------------------------- /src/pub/get.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/get.php -------------------------------------------------------------------------------- /src/pub/health_check.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/health_check.php -------------------------------------------------------------------------------- /src/pub/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magenteiro/firestore/HEAD/src/pub/index.php -------------------------------------------------------------------------------- /src/pub/martins.php: -------------------------------------------------------------------------------- 1 |