@Phil pointed out the right solution.
For a fuller point of view, I clarify that a full name is required when accessing static methods or attributes from the global namespace.
When accessing dynamic methods or attributes (I mean instance properties) without qualifying the name, PHP automatically searches for the property inside the current namespace.
In my opinion, this asymmetry is not useful, since the ability to refer to the properties of the external namespace is the same for either static or dynamic properties.
(Valid on PHP 7.2.0 at the time of writing).
source share