Skip to content

Commit

Permalink
ENGCOM-8544: Declare optional argument after required. #31275
Browse files Browse the repository at this point in the history
 - Merge Pull Request #31275 from vovayatsyuk/magento2:fix-optional-argument-after-required-in-asset-filter
 - Merged commits:
   1. b54e7ae
  • Loading branch information
magento-engcom-team committed Dec 16, 2020
2 parents ad29452 + b54e7ae commit e486a6b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ class Asset extends Select
* @param UiComponentFactory $uiComponentFactory
* @param FilterBuilder $filterBuilder
* @param FilterModifier $filterModifier
* @param OptionSourceInterface $optionsProvider
* @param GetContentByAssetIdsInterface $getContentIdentities
* @param OptionSourceInterface $optionsProvider
* @param array $components
* @param array $data
* @SuppressWarnings(PHPMD.ExcessiveParameterList)
Expand All @@ -44,8 +44,8 @@ public function __construct(
UiComponentFactory $uiComponentFactory,
FilterBuilder $filterBuilder,
FilterModifier $filterModifier,
OptionSourceInterface $optionsProvider = null,
GetContentByAssetIdsInterface $getContentIdentities,
OptionSourceInterface $optionsProvider = null,
array $components = [],
array $data = []
) {
Expand Down

0 comments on commit e486a6b

Please sign in to comment.