I've got a class `File` in the global namespace, and with the latest update, PHPCS is showing this false positive: ``` Calls to PHP native functions must be lowercase; expected "file" but found "File" ``` Code: ```php $filePath = new \File($path); ```