Skip to content

Commit

Permalink
Merge pull request #698 from favicode/fix/php-compatibility
Browse files Browse the repository at this point in the history
Removing trailing comma in WAF constructor to be compatible with PHP 7.2
  • Loading branch information
vvuksan authored Jun 13, 2024
2 parents b172057 + 6db3a64 commit 942607b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Controller/Adminhtml/FastlyCdn/Waf/WafAllowlist.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public function __construct(
$this->config = $config;
$this->api = $api;
$this->vcl = $vcl;
parent::__construct($context, );
parent::__construct($context);
}

/**
Expand Down

0 comments on commit 942607b

Please sign in to comment.