From 510021351cb7ff064de3f24347e6da1cf9859a1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Mleczko?= Date: Wed, 31 Jul 2024 01:12:53 +0200 Subject: [PATCH] Fix missing import after move --- src/core/etl/src/Flow/ETL/Config/ConfigBuilder.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/etl/src/Flow/ETL/Config/ConfigBuilder.php b/src/core/etl/src/Flow/ETL/Config/ConfigBuilder.php index 34b3ae999..2192ad50f 100644 --- a/src/core/etl/src/Flow/ETL/Config/ConfigBuilder.php +++ b/src/core/etl/src/Flow/ETL/Config/ConfigBuilder.php @@ -13,7 +13,7 @@ use Flow\ETL\PHP\Type\Caster; use Flow\ETL\Pipeline\Optimizer; use Flow\ETL\Row\Factory\NativeEntryFactory; -use Flow\ETL\{Cache, Config}; +use Flow\ETL\{Cache, Config, NativePHPRandomValueGenerator}; use Flow\Filesystem\{Filesystem, FilesystemTable}; use Flow\Serializer\{Base64Serializer, NativePHPSerializer, Serializer};