2323use  phpDocumentor \Reflection \Types \Iterable_ ;
2424use  phpDocumentor \Reflection \Types \Null_ ;
2525use  phpDocumentor \Reflection \Types \Nullable ;
26+ use  phpDocumentor \Reflection \Types \NumericString ;
2627use  phpDocumentor \Reflection \Types \Object_ ;
2728use  phpDocumentor \Reflection \Types \String_ ;
2829use  PHPUnit \Framework \TestCase ;
@@ -697,6 +698,7 @@ public function provideKeywords() : array
697698        return  [
698699            ['string ' , Types \String_::class],
699700            ['class-string ' , Types \ClassString::class],
701+             ['trait-string ' , Types \TraitString::class],
700702            ['int ' , Types \Integer::class],
701703            ['integer ' , Types \Integer::class],
702704            ['float ' , Types \Float_::class],
@@ -710,8 +712,10 @@ public function provideKeywords() : array
710712            ['resource ' , Types \Resource_::class],
711713            ['null ' , Types \Null_::class],
712714            ['callable ' , Types \Callable_::class],
715+             ['callable-string ' , Types \CallableString::class],
713716            ['callback ' , Types \Callable_::class],
714717            ['array ' , Array_::class],
718+             ['array-key ' , Types \ArrayKey::class],
715719            ['scalar ' , Types \Scalar::class],
716720            ['object ' , Object_::class],
717721            ['mixed ' , Types \Mixed_::class],
@@ -721,6 +725,7 @@ public function provideKeywords() : array
721725            ['self ' , Types \Self_::class],
722726            ['parent ' , Types \Parent_::class],
723727            ['iterable ' , Iterable_::class],
728+             ['numeric-string ' , NumericString::class],
724729        ];
725730    }
726731
0 commit comments