Laravel HasUuids trait causes conflicts

Laravel 11. I have a model which uses Laravel’s HasUuids trait:

use IlluminateDatabaseEloquentModel;
use IlluminateDatabaseEloquentConcernsHasUuids;

class Foobar extends Model
{
  use HasUuids;
  /* ... */
}

In PhpStorm (2025.1.0.1), the “use HasUuids” line has a red squiggly underline, and hovering over it shows this error:

Trait method ‘uniqueIds’ will not be applied because it collides with ‘HasUuids’

Trait method ‘resolveRouteBindingQuery’ will not be applied because it collides with ‘HasUuids’

Trait method ‘getIncrementing’will not be applied because it collides with ‘HasUuids’

Trait method ‘getKeyType’ will not be applied because it collides with ‘HasUuids’

Trait method ‘uniqueIds’ will not be applied because it collides with ‘HasUniqueStringIds’

Trait method ‘resolveRouteBindingQuery’ will not be applied because it collides with ‘HasUniqueStringIds’

Trait method ‘getIncrementing’ will not be applied because it collides with ‘HasUniqueStringIds’

Trait method ‘getKeyType’ will not be applied because it collides with ‘HasUniqueStringIds’

The collisions, I think, occur between the HasUuids trait (and the HasUniqueStringIds trait it in turn uses), and the Model class which FooBar extends. How can I remove this error report? Is it just a bug in PhpStorm?