是否有可能以某种方式为PHPStorm中的受保护/私有字段生成@property php doc?

时间:2015-12-31 12:08:43

标签: phpstorm

我想问你是否可以根据PHPStorm中的受保护/私有字段为类生成@property phpdoc。这是一个例子:

在:

/**
 * @ORM\Entity
 */
class Abc
{
    use MagicAccessors;

    /**
     * @var string
     * @ORM\Column(type="string", nullable=true)
     */
    protected $a;

    /**
     * @var string
     * @ORM\Column(type="string", nullable=true)
     */
    protected $b;
    ...

后:

/**
 * @ORM\Entity
 *
 * @property string $a
 * @property string $b
 */
class Abc
{
    use MagicAccessors;

    /**
     * @var string
     * @ORM\Column(type="string", nullable=true)
     */
    protected $a;

    /**
     * @var string
     * @ORM\Column(type="string", nullable=true)
     */
    protected $b;
    ...

我的观点是我想自动生成属性phpdocs,因为有时候我会使用魔法访问器。是否清楚?:)

谢谢!

0 个答案:

没有答案