"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Fix the \"Typed Property Must Not Be Accessed Before Initialization\" Error in PHP?

How to Fix the \"Typed Property Must Not Be Accessed Before Initialization\" Error in PHP?

Published on 2024-12-23
Browse:112

How to Fix the \

Understanding the "Typed Property Must Not Be Accessed Before Initialization" Error

With the introduction of property type hints in PHP 7.4, it is crucial to assign valid values to all properties to ensure their declared types are respected. An undefined property, with no assigned value, fails to match any declared type and triggers the error message: "Typed property must not be accessed before initialization".

For instance, consider the code below:

class Foo {
    private string $val;

    public function __construct(int $id) {
        $this->id = $id;
    }

    public function getVal(): string { return $this->val; }
}

Accessing $val after constructing Foo would result in the error, as its type is not yet defined (undefined !== null).

To resolve this, assign values to all properties during construction or set default values for them:

class Foo {
    private string $val = null;  // default null value

    public function __construct(int $id) {
        $this->id = $id;
    }
}

Now, all properties have valid values, eliminating the error.

This issue can also arise when relying on database values for entity properties, such as auto-generated IDs or timestamps. For auto-generated IDs, declare them as nullable:

private ?int $id = null;

For all others, choose appropriate default values that match their types.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3