v13.6.0
the `class_uses_recursive()` function returns an array where both the key and the value are the fully qualified class name, so an `array_flip` returns exactly what it was given. ```php $results = class_uses_recursive(User::class); dd($results === array_flip($results)); //true ```