Skip to content

Commit

Permalink
Merge "Less_Functions: Fix "Implicitly nullable parameter" PHP 8.4 wa…
Browse files Browse the repository at this point in the history
…rning"
  • Loading branch information
jenkins-bot authored and Gerrit Code Review committed Oct 29, 2024
2 parents d411022 + 18344e7 commit 4221eb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Less/Functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Less_Functions {
public $env;
public $currentFileInfo;

public function __construct( $env, array $currentFileInfo = null ) {
public function __construct( $env, ?array $currentFileInfo = null ) {
$this->env = $env;
$this->currentFileInfo = $currentFileInfo;
}
Expand Down

0 comments on commit 4221eb9

Please sign in to comment.