I am getting false positives with args removing the ? in the arg which are "Implicitly nullable parameters"
For example:
- public function getGifTypNameByGifTypId($gifTypId, ?string $locale = null): string
- public function getGifTypNameByGifTypId(int $gifTypId, string $locale = null): string
The first param $gifTypId is nice adding int, but the second is removing ? in $locale which is wrong