禁用 'phpdoc_var_without_name' 选项 phpcsfixer

Disable 'phpdoc_var_without_name' option phpcsfixer

如何从 phpcsfixer 中禁用此选项? 我想使用 :

   /**
    * @var ObjectType $object
    */

但不是,

/**@var ObjectType $type*/

但是phpcsfixer会在第一种情况下移除变量名

只需添加

'phpdoc_var_without_name' => false

到您的配置。