Skip to content

Commit

Permalink
Merge pull request #18 from AzizKHAN030/m244_cms-graphql
Browse files Browse the repository at this point in the history
Changed the order of required vars PHP8
  • Loading branch information
carinadues authored Jun 10, 2022
2 parents f3a1ea4 + 0e1dd14 commit 2566d13
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions src/Model/Template/Filter.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,33 +73,33 @@ public function __construct(
CssInliner $cssInliner,
\Magento\Widget\Model\ResourceModel\Widget $widgetResource,
Widget $widget,
$variables = [],
array $directiveProcessors = [],
$variables,
array $directiveProcessors,
array $availableFilters,
array $widgetUnescapedParams,
array $widgetCustomParamsHandlers
) {
parent::__construct(
$string,
$logger,
$escaper,
$assetRepo,
$scopeConfig,
$coreVariableFactory,
$storeManager,
$layout,
$layoutFactory,
$appState,
$urlModel,
$configVariables,
$variableResolver,
$cssProcessor,
$pubDirectory,
$cssInliner,
$widgetResource,
$widget,
$variables ?? [],
$directiveProcessors
$logger,
$escaper,
$assetRepo,
$scopeConfig,
$coreVariableFactory,
$storeManager,
$layout,
$layoutFactory,
$appState,
$urlModel,
$configVariables,
$variableResolver,
$cssProcessor,
$pubDirectory,
$cssInliner,
$widgetResource,
$widget,
$variables ?? [],
$directiveProcessors ?? []
);

$this->availableFilters = $availableFilters;
Expand Down

0 comments on commit 2566d13

Please sign in to comment.