Skip to content

Commit

Permalink
Merge pull request #682 from ptmkenny/php8.4
Browse files Browse the repository at this point in the history
Fix php 8.4 deprecation

closes #686
  • Loading branch information
jhedstrom authored Feb 26, 2025
2 parents acfdb52 + 37ea82e commit 84df044
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class DrupalExtension implements ExtensionInterface
*
* @param null|ServiceProcessor $processor
*/
public function __construct(ServiceProcessor $processor = null)
public function __construct(?ServiceProcessor $processor = null)
{
$this->processor = $processor ? : new ServiceProcessor();
}
Expand Down

0 comments on commit 84df044

Please sign in to comment.