phpDocumentor/TypeResolver

Add support for `never` type

jaapio opened this issue · 1 comments

php 8.1 adds the never keyword for methods that do not return.

function method(): never {
   exit(1);
}

New type must be added to the type-resolver. Which should be enough to have support in all phpDocumentor libraries.

fixed by #130