Meday Thank you very much for the test case.
We'll fix the false warning!
A side note: this is an undocumented PHP behavior. Traits are not the same thing as inheritance. They are used as a blueprint that's "copied" into the class (so the abstract uncle function does not make any use here, it's practically ignored by PHP, not overridden). In this case, PHP may trigger an error in the future version. The bulletproof syntax would be the following:
use uncleTrait, parentTrait {
parentTrait::test insteadof uncleTrait;
}