pestle icon indicating copy to clipboard operation
pestle copied to clipboard

DocBlocks not parsed when code indented

Open astorm opened this issue 5 years ago • 0 comments

Strange behavior -- if the pestle_cli function is indented an extra four characters

foo();...
    /**
    * Showing you options
    *
    * @command some-command
    * @option some-option An Example Option
    */
    function pestle_cli($argv, $options)
    {
        var_dump($options['some-option']);
    }

the @option isn't parsed.

astorm avatar Aug 16 '19 15:08 astorm