NullPropertyFetch
A property is accessed on a value that is possibly null.
Example
Section titled “Example”<?phpfunction getUser(): ?User { return null; }
echo getUser()->name; // getUser() may return nullHow to fix
Section titled “How to fix”Add a null check before the access, or use the null-safe operator ?->.
<?phpecho getUser()?->name;