mirror of
https://github.com/elementor/hello-theme.git
synced 2025-10-03 15:33:37 +08:00
Fix: PHP 8.4 compatibility - avoid implicit null [TMZ-616] (#485)
This commit is contained in:
parent
c79dadce64
commit
cbc63e0b48
1 changed files with 1 additions and 1 deletions
|
@ -196,7 +196,7 @@ abstract class Module_Base {
|
|||
* @param ?array $components_ids => component's class name.
|
||||
* @return void
|
||||
*/
|
||||
protected function register_components( array $components_ids = null ): void {
|
||||
protected function register_components( ?array $components_ids = null ): void {
|
||||
if ( empty( $components_ids ) ) {
|
||||
$components_ids = $this->get_component_ids();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue