v24.2.0 introduced named arguments in deployer/cache/task/cache_clear_php_http.php lines 48, 55 and 64.
Since deployer-extended is supposed to be compatible with Deployer 7 and Deployer 7 supports PHP 7, named arguments break Deployer 7/PHP 7 compatibility.
❯ dep
ParseError in cache_clear_php_http.php on line 48:
syntax error, unexpected ':', expecting ')'
This change removes the named arguments and passes the rest in PHP 7 format.
Related pr: #23
v24.2.0 introduced named arguments in deployer/cache/task/cache_clear_php_http.php lines 48, 55 and 64.
Since deployer-extended is supposed to be compatible with Deployer 7 and Deployer 7 supports PHP 7, named arguments break Deployer 7/PHP 7 compatibility.
This change removes the named arguments and passes the rest in PHP 7 format.
Related pr: #23