* * @internal */ public static array $callables = []; /** * Lazy loads an `uses` call on the context of plugins. * * @param class-string ...$traits */ public static function uses(string ...$traits): void { self::$callables[] = function () use ($traits): void { uses(...$traits)->in(TestSuite::getInstance()->rootPath); }; } }