Skip to content

Commit

Permalink
Merge pull request #712 from equalizedigital/william/706/php8.4-depre…
Browse files Browse the repository at this point in the history
…cation-of-implicitly-nullable

PHP 8.4 deprecation notice fix for implicitly nullable Meta_Boxes
  • Loading branch information
pattonwebz committed Jul 12, 2024
2 parents d8182c8 + 472d049 commit f992907
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions admin/class-admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ class Admin {
/**
* Class constructor for injecting dependencies.
*
* @param Meta_Boxes|null $meta_boxes Meta boxes instance.
* @param Meta_Boxes $meta_boxes Meta boxes instance.
*/
public function __construct( Meta_Boxes $meta_boxes = null ) {
public function __construct( Meta_Boxes $meta_boxes ) {
$this->meta_boxes = $meta_boxes;
}

Expand Down

0 comments on commit f992907

Please sign in to comment.