ronvanderheijden / vscode-phpdoc-generator

PHPDoc Generator is a VSCode extension that generates a documentation block using a keyboard shortcut.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Arguments have two types

dmitrach opened this issue · comments

I got the description

    /**
     * Adds a new value to the current group or to the given group.
     *
     * @param  string $name
     * @param  mixed  $value
     * @param  string $groupName
     * @return void
     */
    public function add(string $name, $value, string $groupName = null)

Must be:

    /**
     * Adds a new value to the current group or to the given group.
     *
     * @param  string $name
     * @param  mixed  $value
     * @param  string|null $groupName
     * @return void
     */
    public function add(string $name, $value, string $groupName = null)

https://yadi.sk/i/gQW1sLXPn_mEKQ