Skip to content

Commit 0630664

Browse files
committed
Use @codingStandardsIgnoreLine for long URLs
1 parent 36d6566 commit 0630664

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/code/Magento/Backend/Block/Store/Switcher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Switcher extends \Magento\Backend\Block\Template
2020
/**
2121
* URL for store switcher hint
2222
*/
23-
public const HINT_URL = 'https://experienceleague.adobe.com/docs/commerce-admin/start/setup/websites-stores-views.html#scope-settings';
23+
public const HINT_URL = 'https://experienceleague.adobe.com/docs/commerce-admin/start/setup/websites-stores-views.html#scope-settings'; // @codingStandardsIgnoreLine
2424

2525
/**
2626
* Name of website variable

app/code/Magento/Catalog/Ui/DataProvider/Product/Form/Modifier/Websites.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ protected function getFieldsForFieldset()
165165
$websitesList = $this->getWebsitesList();
166166
$isNewProduct = !$this->locator->getProduct()->getId();
167167
$tooltip = [
168-
'link' => 'https://experienceleague.adobe.com/docs/commerce-admin/start/setup/websites-stores-views.html#scope-settings',
168+
'link' => 'https://experienceleague.adobe.com/docs/commerce-admin/start/setup/websites-stores-views.html#scope-settings', // @codingStandardsIgnoreLine
169169
'description' => __(
170170
'If your Magento installation has multiple websites, ' .
171171
'you can edit the scope to use the product on specific sites.'

app/code/Magento/ImportExport/Block/Adminhtml/Import/Edit/Form.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ private function getImportBehaviorTooltip()
292292
{
293293
$html = '<div class="admin__field-tooltip tooltip">
294294
<a class="admin__field-tooltip-action action-help" target="_blank" title="What is this?"
295-
href="https://experienceleague.adobe.com/docs/commerce-admin/systems/data-transfer/import/data-import.html"><span>'
295+
href="https://experienceleague.adobe.com/docs/commerce-admin/systems/data-transfer/import/data-import.html"><span>' // @codingStandardsIgnoreLine
296296
. __('What is this?')
297297
. '</span></a></div>';
298298
return $html;

0 commit comments

Comments
 (0)