Skip to content

Commit

Permalink
[TASK] Updated Title and Comment of the is_filterable and is_filterab…
Browse files Browse the repository at this point in the history
…le_in_search fields according to the PHP Code Sniffer
  • Loading branch information
lewisvoncken committed Aug 28, 2018
1 parent 952b333 commit a2d9a6a
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ public function execute(\Magento\Framework\Event\Observer $observer)
[
'name' => 'is_filterable',
'label' => __("Use in Layered Navigation"),
'title' => __('Can be used only with catalog input type Yes/No (Boolean), Dropdown, Multiple Select and Price'),
'note' => __('Can be used only with catalog input type Yes/No (Boolean), Dropdown, Multiple Select and Price.'),
'title' => __('Can be used only with catalog input type Yes/No, Dropdown, Multiple Select and Price'),
'note' => __('Can be used only with catalog input type Yes/No, Dropdown, Multiple Select and Price.'),
'values' => [
['value' => '0', 'label' => __('No')],
['value' => '1', 'label' => __('Filterable (with results)')],
Expand All @@ -70,8 +70,8 @@ public function execute(\Magento\Framework\Event\Observer $observer)
[
'name' => 'is_filterable_in_search',
'label' => __("Use in Search Results Layered Navigation"),
'title' => __('Can be used only with catalog input type Yes/No (Boolean), Dropdown, Multiple Select and Price'),
'note' => __('Can be used only with catalog input type Yes/No (Boolean), Dropdown, Multiple Select and Price.'),
'title' => __('Can be used only with catalog input type Yes/No, Dropdown, Multiple Select and Price'),
'note' => __('Can be used only with catalog input type Yes/No, Dropdown, Multiple Select and Price.'),
'values' => $this->optionList->toOptionArray(),
]
);
Expand Down

0 comments on commit a2d9a6a

Please sign in to comment.