astorm/pestle

DocBlocks not parsed when code indented

astorm opened this issue · 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.