Since PHP 8.1, passing a null string to ltrim(string $string, string $characters) is deprecated.
Thus do not check for $path = null but check for $path = '' before passing $path as the $string parameter to ltrim(), like src/applications/settings/panel/PhabricatorSettingsPanel.php already does.
Closes T15359