Currently DocBlocker is not working with this: ```php $bar = function(string $foo) : bool { return true; }; ``` it just generates an empty comment: ```php /** */ $bar = function(string $foo) : bool { return true; }; ```
Currently DocBlocker is not working with this:
it just generates an empty comment: