php-cs-fixer-phpdoc-force-fqcn
php-cs-fixer-phpdoc-force-fqcn copied to clipboard
Global namespace
Hello, found that when I use rule
'global_namespace_import' => [
'import_classes' => true,
],
with this package, the result for global namespaces (\BackedEnum
, \Exception
) is something like this:
/**
* @throws Exception
*/
public function destroy();
but the expected result is something like this:
/**
* @throws \Exception
*/
public function destroy();