Last active
February 28, 2017 20:28
-
-
Save ktomk/a7690cc3353298eec609fdc1d76ad295 to your computer and use it in GitHub Desktop.
check di.xml files for wrongfully FQCNs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
* check di.xml files for wrongfully FQCNs | |
* | |
* usage: php -f check.php -- [<path-to-magento2>] | |
* | |
* <path-to-magento2> directory to scan, defaults to current working directory | |
*/ | |
$path = (@$argv[1]) ?: '.'; | |
$basename = 'di.xml'; | |
$dryrun = true; # set to false to change the files | |
$files = new RegexIterator( | |
new RecursiveIteratorIterator( | |
new RecursiveDirectoryIterator($path), | |
null, | |
RecursiveIteratorIterator::CATCH_GET_CHILD | |
), | |
sprintf('~/%s$~', preg_quote($basename)) | |
); | |
$counters = ['files' => 0, 'nodes' => 0]; | |
foreach ($files as $file) { | |
$nodes = simplexml_load_file($file)->xpath('(//@for|//@type|//@name)[starts-with(., "\\")]'); | |
if (!$nodes) { | |
continue; | |
} | |
fprintf(STDERR, "%s (%d):\n", $file, count($nodes)); | |
$counters['files']++; | |
$counters['nodes'] += count($nodes); | |
$dryrun || $lines = file($file); | |
foreach ($nodes as $node) { | |
$dom = dom_import_simplexml($node); | |
fprintf(STDERR, " - %s on line %d: %s\n", $dom->getNodePath(), $dom->getLineNo(), $node); | |
if (!$dryrun) { | |
$line = &$lines[$dom->getLineNo()-1]; | |
$line = strtr($line, ["$node" => ltrim($node, "\\")]); | |
} | |
} | |
unset($line); | |
$dryrun || file_put_contents($file, $lines); | |
} | |
vfprintf(STDOUT, "%d file(s) with %d node(s)\n", $counters); | |
exit($counters['files'] ? 1 : 0); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ php -f magento2/check.php -- magento2/www | |
magento2/www/vendor/magento/module-wishlist/etc/di.xml (3): | |
- /config/preference[1]/@type on line 9: \Magento\Wishlist\Model\AuthenticationState | |
- /config/preference[2]/@type on line 10: \Magento\Wishlist\Controller\WishlistProvider | |
- /config/type[3]/plugin/@type on line 22: \Magento\Wishlist\Controller\Index\Plugin | |
magento2/www/vendor/magento/module-catalog/etc/di.xml (7): | |
- /config/type[43]/plugin/@type on line 382: \Magento\Catalog\Model\Plugin\ShowOutOfStockConfig | |
- /config/preference[40]/@type on line 459: \Magento\Catalog\Model\ProductLink\Attribute | |
- /config/preference[44]/@type on line 463: \Magento\Catalog\Model\CategoryLinkManagement | |
- /config/preference[47]/@type on line 466: \Magento\Catalog\Model\CategoryLinkRepository | |
- /config/preference[49]/@type on line 468: \Magento\Catalog\Model\Product\Option\Repository | |
- /config/preference[51]/@type on line 470: \Magento\Catalog\Model\Product\TierPriceManagement | |
- /config/preference[55]/@type on line 474: \Magento\Catalog\Model\Product\Option\Value | |
magento2/www/vendor/magento/module-catalog-search/etc/adminhtml/di.xml (1): | |
- /config/type/plugin/@type on line 20: \Magento\CatalogSearch\Block\Plugin\FrontTabPlugin | |
magento2/www/vendor/magento/module-sales/etc/di.xml (10): | |
- /config/type[8]/plugin/@type on line 157: \Magento\Sales\Controller\Order\Plugin\Authentication | |
- /config/type[9]/plugin/@type on line 160: \Magento\Sales\Controller\Order\Plugin\Authentication | |
- /config/type[10]/plugin/@type on line 163: \Magento\Sales\Controller\Order\Plugin\Authentication | |
- /config/type[11]/plugin/@type on line 166: \Magento\Sales\Controller\Order\Plugin\Authentication | |
- /config/type[12]/plugin/@type on line 169: \Magento\Sales\Controller\Order\Plugin\Authentication | |
- /config/type[13]/plugin/@type on line 172: \Magento\Sales\Controller\Order\Plugin\Authentication | |
- /config/type[14]/plugin/@type on line 175: \Magento\Sales\Controller\Order\Plugin\Authentication | |
- /config/type[15]/plugin/@type on line 178: \Magento\Sales\Controller\Order\Plugin\Authentication | |
- /config/type[16]/plugin/@type on line 181: \Magento\Sales\Controller\Order\Plugin\Authentication | |
- /config/type[17]/plugin/@type on line 184: \Magento\Sales\Controller\Order\Plugin\Authentication | |
magento2/www/vendor/magento/module-sales/etc/frontend/di.xml (2): | |
- /config/preference[1]/@type on line 9: \Magento\Sales\Controller\AbstractController\OrderLoader | |
- /config/preference[2]/@type on line 10: \Magento\Sales\Controller\AbstractController\OrderViewAuthorization | |
magento2/www/vendor/magento/module-quote/etc/di.xml (10): | |
- /config/preference[12]/@type on line 20: \Magento\Quote\Model\PaymentMethodManagement | |
- /config/preference[13]/@type on line 21: \Magento\Quote\Model\Quote\Payment | |
- /config/preference[16]/@type on line 24: \Magento\Quote\Model\Cart\CartTotalRepository | |
- /config/preference[17]/@type on line 25: \Magento\Quote\Model\Cart\CartTotalManagement | |
- /config/preference[18]/@type on line 26: \Magento\Quote\Model\Cart\Totals | |
- /config/preference[19]/@type on line 27: \Magento\Quote\Model\Cart\TotalSegment | |
- /config/preference[20]/@type on line 28: \Magento\Quote\Model\Cart\Totals\Item | |
- /config/preference[21]/@type on line 29: \Magento\Quote\Model\Cart\Currency | |
- /config/preference[32]/@type on line 40: \Magento\Quote\Model\GuestCart\GuestCartTotalManagement | |
- /config/preference[34]/@type on line 42: \Magento\Quote\Model\Quote\ProductOption | |
magento2/www/vendor/magento/magento2-base/app/etc/di.xml (2): | |
- /config/preference[25]/@type on line 33: \Magento\Framework\View\Asset\Bundle\Config | |
- /config/preference[72]/@type on line 85: \Magento\Framework\Stdlib\Cookie\CookieScope | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/Search/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Search\Test\Handler\SynonymGroup\Curl | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\CatalogSearch\Test\Handler\CatalogSearchQuery\Curl | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\UrlRewrite\Test\Handler\UrlRewrite\Curl | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/CatalogRule/Test/etc/ui/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\CatalogRule\Test\Handler\CatalogRule\Ui | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/CatalogRule/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\CatalogRule\Test\Handler\CatalogRule\Curl | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/Store/Test/etc/curl/di.xml (3): | |
- /config/preference[1]/@type on line 9: \Magento\Store\Test\Handler\Store\Curl | |
- /config/preference[2]/@type on line 10: \Magento\Store\Test\Handler\StoreGroup\Curl | |
- /config/preference[3]/@type on line 11: \Magento\Store\Test\Handler\Website\Curl | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\ConfigurableProduct\Test\Handler\ConfigurableProduct\Curl | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/Cms/Test/etc/curl/di.xml (2): | |
- /config/preference[1]/@type on line 9: \Magento\Cms\Test\Handler\CmsPage\Curl | |
- /config/preference[2]/@type on line 10: \Magento\Cms\Test\Handler\CmsBlock\Curl | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/Directory/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Directory\Test\Handler\CurrencyRate\Curl | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/Sitemap/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Sitemap\Test\Handler\Sitemap\Curl | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/Tax/Test/etc/webapi/di.xml (3): | |
- /config/preference[1]/@type on line 9: \Magento\Tax\Test\Handler\TaxRule\Webapi | |
- /config/preference[2]/@type on line 10: \Magento\Tax\Test\Handler\TaxClass\Webapi | |
- /config/preference[3]/@type on line 11: \Magento\Tax\Test\Handler\TaxRate\Webapi | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/Tax/Test/etc/curl/di.xml (3): | |
- /config/preference[1]/@type on line 9: \Magento\Tax\Test\Handler\TaxRule\Curl | |
- /config/preference[2]/@type on line 10: \Magento\Tax\Test\Handler\TaxRate\Curl | |
- /config/preference[3]/@type on line 11: \Magento\Tax\Test\Handler\TaxClass\Curl | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/Sales/Test/etc/webapi/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Sales\Test\Handler\OrderInjectable\Webapi | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/Sales/Test/etc/curl/di.xml (2): | |
- /config/preference[1]/@type on line 9: \Magento\Sales\Test\Handler\OrderInjectable\Curl | |
- /config/preference[2]/@type on line 10: \Magento\Sales\Test\Handler\OrderStatus\Curl | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/etc/webapi/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\GroupedProduct\Test\Handler\GroupedProduct\Webapi | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\GroupedProduct\Test\Handler\GroupedProduct\Curl | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/Review/Test/etc/curl/di.xml (2): | |
- /config/preference[1]/@type on line 9: \Magento\Review\Test\Handler\Rating\Curl | |
- /config/preference[2]/@type on line 10: \Magento\Review\Test\Handler\Review\Curl | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/Integration/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Integration\Test\Handler\Integration\Curl | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/SalesRule/Test/etc/webapi/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\SalesRule\Test\Handler\SalesRule\Webapi | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/SalesRule/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\SalesRule\Test\Handler\SalesRule\Curl | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/Catalog/Test/etc/webapi/di.xml (3): | |
- /config/preference[1]/@type on line 9: \Magento\Catalog\Test\Handler\Category\Webapi | |
- /config/preference[2]/@type on line 10: \Magento\Catalog\Test\Handler\CatalogProductSimple\Webapi | |
- /config/preference[3]/@type on line 11: \Magento\Catalog\Test\Handler\CatalogProductVirtual\Webapi | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/Catalog/Test/etc/ui/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Catalog\Test\Handler\CatalogProductSimple\Ui | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/Catalog/Test/etc/curl/di.xml (5): | |
- /config/preference[1]/@type on line 9: \Magento\Catalog\Test\Handler\CatalogProductSimple\Curl | |
- /config/preference[2]/@type on line 10: \Magento\Catalog\Test\Handler\CatalogProductAttribute\Curl | |
- /config/preference[3]/@type on line 11: \Magento\Catalog\Test\Handler\CatalogAttributeSet\Curl | |
- /config/preference[4]/@type on line 12: \Magento\Catalog\Test\Handler\Category\Curl | |
- /config/preference[5]/@type on line 13: \Magento\Catalog\Test\Handler\CatalogProductVirtual\Curl | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\CheckoutAgreements\Test\Handler\CheckoutAgreement\Curl | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/Newsletter/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Newsletter\Test\Handler\Template\Curl | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/Config/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Config\Test\Handler\ConfigData\Curl | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/User/Test/etc/curl/di.xml (2): | |
- /config/preference[1]/@type on line 9: \Magento\User\Test\Handler\Role\Curl | |
- /config/preference[2]/@type on line 10: \Magento\User\Test\Handler\User\Curl | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/Widget/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Widget\Test\Handler\Widget\Curl | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/Downloadable/Test/etc/webapi/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Downloadable\Test\Handler\DownloadableProduct\Webapi | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/Downloadable/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Downloadable\Test\Handler\DownloadableProduct\Curl | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\CurrencySymbol\Test\Handler\CurrencySymbolEntity\Curl | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/Variable/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Variable\Test\Handler\SystemVariable\Curl | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/Customer/Test/etc/webapi/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Customer\Test\Handler\Customer\Webapi | |
magento2/www/vendor/magento/magento2-base/dev/tests/functional/tests/app/Magento/Customer/Test/etc/curl/di.xml (2): | |
- /config/preference[1]/@type on line 9: \Magento\Customer\Test\Handler\Customer\Curl | |
- /config/preference[2]/@type on line 10: \Magento\Customer\Test\Handler\CustomerGroup\Curl | |
magento2/www/vendor/magento/module-catalog-import-export/etc/di.xml (6): | |
- /config/type[1]/plugin[1]/@type on line 11: \Magento\CatalogImportExport\Model\Indexer\Product\Flat\Plugin\Import | |
- /config/type[1]/plugin[2]/@type on line 12: \Magento\CatalogImportExport\Model\Indexer\Product\Price\Plugin\Import | |
- /config/type[1]/plugin[3]/@type on line 13: \Magento\CatalogImportExport\Model\Indexer\Stock\Plugin\Import | |
- /config/type[1]/plugin[4]/@type on line 14: \Magento\CatalogImportExport\Model\Indexer\Product\Eav\Plugin\Import | |
- /config/type[1]/plugin[5]/@type on line 15: \Magento\CatalogImportExport\Model\Indexer\Product\Category\Plugin\Import | |
- /config/type[1]/plugin[6]/@type on line 16: \Magento\CatalogImportExport\Model\Indexer\Category\Product\Plugin\Import | |
magento2/www/vendor/magento/module-tax/etc/di.xml (2): | |
- /config/preference[9]/@type on line 46: \Magento\Tax\Model\TaxClass\Management | |
- /config/preference[20]/@type on line 57: \Magento\Tax\Model\TaxClass\Key | |
magento2/www/vendor/magento/module-configurable-product/etc/di.xml (2): | |
- /config/type[11]/plugin/@type on line 65: \Magento\ConfigurableProduct\Model\Plugin\AroundProductRepositorySave | |
- /config/type[21]/plugin/@type on line 152: \Magento\ConfigurableProduct\Block\Plugin\Product\Media\Gallery | |
magento2/www/vendor/magento/module-customer/etc/frontend/di.xml (1): | |
- /config/type[7]/plugin/@type on line 58: \Magento\Customer\Model\Cart\ConfigPlugin | |
magento2/www/vendor/magento/module-downloadable/etc/di.xml (8): | |
- /config/preference[1]/@type on line 80: \Magento\Downloadable\Model\LinkRepository | |
- /config/preference[2]/@type on line 81: \Magento\Downloadable\Model\SampleRepository | |
- /config/preference[3]/@type on line 82: \Magento\Downloadable\Model\Link | |
- /config/preference[4]/@type on line 83: \Magento\Downloadable\Model\Sample | |
- /config/preference[5]/@type on line 84: \Magento\Downloadable\Model\File\Content | |
- /config/preference[6]/@type on line 85: \Magento\Downloadable\Model\File\ContentUploader | |
- /config/preference[7]/@type on line 86: \Magento\Downloadable\Model\Product\TypeHandler\TypeHandler | |
- /config/preference[8]/@type on line 87: \Magento\Downloadable\Model\DownloadableOption | |
magento2/www/vendor/magento/module-store/etc/adminhtml/di.xml (1): | |
- /config/type/plugin/@type on line 10: \Magento\Store\App\FrontController\Plugin\DefaultStore | |
magento2/www/vendor/magento/module-shipping/etc/di.xml (1): | |
- /config/preference[3]/@type on line 11: \Magento\Shipping\Model\Carrier\Source\GenericDefault | |
magento2/www/vendor/magento/module-captcha/etc/di.xml (1): | |
- /config/type[7]/plugin/@type on line 41: \Magento\Captcha\Model\Cart\ConfigPlugin | |
magento2/www/vendor/magento/module-vault/etc/di.xml (1): | |
- /config/type[1]/plugin/@type on line 18: \Magento\Vault\Plugin\PaymentVaultAttributesLoad | |
magento2/www/vendor/magento/module-catalog-inventory/etc/di.xml (4): | |
- /config/preference[20]/@type on line 34: \Magento\CatalogInventory\Model\ResourceModel\Stock | |
- /config/type[6]/plugin/@type on line 61: \Magento\CatalogInventory\Model\Indexer\Stock\Plugin\StoreGroup | |
- /config/type[9]/plugin/@type on line 72: \Magento\CatalogInventory\Model\Plugin\AfterProductLoad | |
- /config/type[10]/plugin/@type on line 75: \Magento\CatalogInventory\Model\Plugin\AroundProductRepositorySave | |
magento2/www/app/etc/di.xml (2): | |
- /config/preference[25]/@type on line 33: \Magento\Framework\View\Asset\Bundle\Config | |
- /config/preference[72]/@type on line 85: \Magento\Framework\Stdlib\Cookie\CookieScope | |
magento2/www/dev/tests/functional/tests/app/Magento/Search/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Search\Test\Handler\SynonymGroup\Curl | |
magento2/www/dev/tests/functional/tests/app/Magento/CatalogSearch/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\CatalogSearch\Test\Handler\CatalogSearchQuery\Curl | |
magento2/www/dev/tests/functional/tests/app/Magento/UrlRewrite/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\UrlRewrite\Test\Handler\UrlRewrite\Curl | |
magento2/www/dev/tests/functional/tests/app/Magento/CatalogRule/Test/etc/ui/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\CatalogRule\Test\Handler\CatalogRule\Ui | |
magento2/www/dev/tests/functional/tests/app/Magento/CatalogRule/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\CatalogRule\Test\Handler\CatalogRule\Curl | |
magento2/www/dev/tests/functional/tests/app/Magento/Store/Test/etc/curl/di.xml (3): | |
- /config/preference[1]/@type on line 9: \Magento\Store\Test\Handler\Store\Curl | |
- /config/preference[2]/@type on line 10: \Magento\Store\Test\Handler\StoreGroup\Curl | |
- /config/preference[3]/@type on line 11: \Magento\Store\Test\Handler\Website\Curl | |
magento2/www/dev/tests/functional/tests/app/Magento/ConfigurableProduct/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\ConfigurableProduct\Test\Handler\ConfigurableProduct\Curl | |
magento2/www/dev/tests/functional/tests/app/Magento/Cms/Test/etc/curl/di.xml (2): | |
- /config/preference[1]/@type on line 9: \Magento\Cms\Test\Handler\CmsPage\Curl | |
- /config/preference[2]/@type on line 10: \Magento\Cms\Test\Handler\CmsBlock\Curl | |
magento2/www/dev/tests/functional/tests/app/Magento/Directory/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Directory\Test\Handler\CurrencyRate\Curl | |
magento2/www/dev/tests/functional/tests/app/Magento/Sitemap/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Sitemap\Test\Handler\Sitemap\Curl | |
magento2/www/dev/tests/functional/tests/app/Magento/Tax/Test/etc/webapi/di.xml (3): | |
- /config/preference[1]/@type on line 9: \Magento\Tax\Test\Handler\TaxRule\Webapi | |
- /config/preference[2]/@type on line 10: \Magento\Tax\Test\Handler\TaxClass\Webapi | |
- /config/preference[3]/@type on line 11: \Magento\Tax\Test\Handler\TaxRate\Webapi | |
magento2/www/dev/tests/functional/tests/app/Magento/Tax/Test/etc/curl/di.xml (3): | |
- /config/preference[1]/@type on line 9: \Magento\Tax\Test\Handler\TaxRule\Curl | |
- /config/preference[2]/@type on line 10: \Magento\Tax\Test\Handler\TaxRate\Curl | |
- /config/preference[3]/@type on line 11: \Magento\Tax\Test\Handler\TaxClass\Curl | |
magento2/www/dev/tests/functional/tests/app/Magento/Sales/Test/etc/webapi/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Sales\Test\Handler\OrderInjectable\Webapi | |
magento2/www/dev/tests/functional/tests/app/Magento/Sales/Test/etc/curl/di.xml (2): | |
- /config/preference[1]/@type on line 9: \Magento\Sales\Test\Handler\OrderInjectable\Curl | |
- /config/preference[2]/@type on line 10: \Magento\Sales\Test\Handler\OrderStatus\Curl | |
magento2/www/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/etc/webapi/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\GroupedProduct\Test\Handler\GroupedProduct\Webapi | |
magento2/www/dev/tests/functional/tests/app/Magento/GroupedProduct/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\GroupedProduct\Test\Handler\GroupedProduct\Curl | |
magento2/www/dev/tests/functional/tests/app/Magento/Review/Test/etc/curl/di.xml (2): | |
- /config/preference[1]/@type on line 9: \Magento\Review\Test\Handler\Rating\Curl | |
- /config/preference[2]/@type on line 10: \Magento\Review\Test\Handler\Review\Curl | |
magento2/www/dev/tests/functional/tests/app/Magento/Integration/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Integration\Test\Handler\Integration\Curl | |
magento2/www/dev/tests/functional/tests/app/Magento/SalesRule/Test/etc/webapi/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\SalesRule\Test\Handler\SalesRule\Webapi | |
magento2/www/dev/tests/functional/tests/app/Magento/SalesRule/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\SalesRule\Test\Handler\SalesRule\Curl | |
magento2/www/dev/tests/functional/tests/app/Magento/Catalog/Test/etc/webapi/di.xml (3): | |
- /config/preference[1]/@type on line 9: \Magento\Catalog\Test\Handler\Category\Webapi | |
- /config/preference[2]/@type on line 10: \Magento\Catalog\Test\Handler\CatalogProductSimple\Webapi | |
- /config/preference[3]/@type on line 11: \Magento\Catalog\Test\Handler\CatalogProductVirtual\Webapi | |
magento2/www/dev/tests/functional/tests/app/Magento/Catalog/Test/etc/ui/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Catalog\Test\Handler\CatalogProductSimple\Ui | |
magento2/www/dev/tests/functional/tests/app/Magento/Catalog/Test/etc/curl/di.xml (5): | |
- /config/preference[1]/@type on line 9: \Magento\Catalog\Test\Handler\CatalogProductSimple\Curl | |
- /config/preference[2]/@type on line 10: \Magento\Catalog\Test\Handler\CatalogProductAttribute\Curl | |
- /config/preference[3]/@type on line 11: \Magento\Catalog\Test\Handler\CatalogAttributeSet\Curl | |
- /config/preference[4]/@type on line 12: \Magento\Catalog\Test\Handler\Category\Curl | |
- /config/preference[5]/@type on line 13: \Magento\Catalog\Test\Handler\CatalogProductVirtual\Curl | |
magento2/www/dev/tests/functional/tests/app/Magento/CheckoutAgreements/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\CheckoutAgreements\Test\Handler\CheckoutAgreement\Curl | |
magento2/www/dev/tests/functional/tests/app/Magento/Newsletter/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Newsletter\Test\Handler\Template\Curl | |
magento2/www/dev/tests/functional/tests/app/Magento/Config/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Config\Test\Handler\ConfigData\Curl | |
magento2/www/dev/tests/functional/tests/app/Magento/User/Test/etc/curl/di.xml (2): | |
- /config/preference[1]/@type on line 9: \Magento\User\Test\Handler\Role\Curl | |
- /config/preference[2]/@type on line 10: \Magento\User\Test\Handler\User\Curl | |
magento2/www/dev/tests/functional/tests/app/Magento/Widget/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Widget\Test\Handler\Widget\Curl | |
magento2/www/dev/tests/functional/tests/app/Magento/Downloadable/Test/etc/webapi/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Downloadable\Test\Handler\DownloadableProduct\Webapi | |
magento2/www/dev/tests/functional/tests/app/Magento/Downloadable/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Downloadable\Test\Handler\DownloadableProduct\Curl | |
magento2/www/dev/tests/functional/tests/app/Magento/CurrencySymbol/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\CurrencySymbol\Test\Handler\CurrencySymbolEntity\Curl | |
magento2/www/dev/tests/functional/tests/app/Magento/Variable/Test/etc/curl/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Variable\Test\Handler\SystemVariable\Curl | |
magento2/www/dev/tests/functional/tests/app/Magento/Customer/Test/etc/webapi/di.xml (1): | |
- /config/preference/@type on line 9: \Magento\Customer\Test\Handler\Customer\Webapi | |
magento2/www/dev/tests/functional/tests/app/Magento/Customer/Test/etc/curl/di.xml (2): | |
- /config/preference[1]/@type on line 9: \Magento\Customer\Test\Handler\Customer\Curl | |
- /config/preference[2]/@type on line 10: \Magento\Customer\Test\Handler\CustomerGroup\Curl | |
86 file(s) with 166 node(s) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment