php-cs-fixer-phpdoc-force-fqcn icon indicating copy to clipboard operation
php-cs-fixer-phpdoc-force-fqcn copied to clipboard

Global namespace

Open MatusBoa opened this issue 2 years ago • 0 comments

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();

MatusBoa avatar Sep 10 '22 14:09 MatusBoa