victorjonsson / PHP-Markdown-Documentation-Generator

Write documentation once, and only once!
MIT License
101 stars 32 forks source link

Param type is rendering as "mixed" instead of "int" or "integer" #1

Closed jc21 closed 9 years ago

jc21 commented 9 years ago

In this example:

    /**
     * Refresh a Library Section.
     *
     * @param  int   $sectionKey  Obtained using getLibrarySections()
     * @param  bool  $force
     * @return null|bool
     */
    public function refreshLibrarySection($sectionKey, $force = false) {

The row is rendering this:

| public | refreshLibrarySection(mixed $sectionKey, bool $force=false) : null/bool
Refresh a Library Section. |

victorjonsson commented 9 years ago

Thanks for the report! Let me know if you find any more bugs!

jc21 commented 9 years ago

Thanks :)