phpDocumentor / TypeResolver

A PSR-5 based resolver of Class names, Types and Structural Element Names

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add support for `never` type

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