Skip to content

NullPropertyFetch

A property is accessed on a value that is possibly null.

<?php
function getUser(): ?User { return null; }
echo getUser()->name; // getUser() may return null

Add a null check before the access, or use the null-safe operator ?->.

<?php
echo getUser()?->name;