JessGabriel
JessGabriel

Reputation: 1072

Disable 'phpdoc_var_without_name' option phpcsfixer

How can I disable this option from phpcsfixer? I want to use :

   /**
    * @var ObjectType $object
    */

But not,

/**@var ObjectType $type*/

But phpcsfixer will remove the variable name in the first case

Upvotes: 0

Views: 156

Answers (1)

kuba
kuba

Reputation: 3870

Simply add

'phpdoc_var_without_name' => false

to your config.

Upvotes: 1

Related Questions