Flow PHP

Deprecated

Table of Contents

src/core/etl/src/Flow/ETL/Config.php
src/core/etl/src/Flow/ETL/DataFrame.php
src/core/etl/src/Flow/ETL/DSL/functions.php
src/core/etl/src/Flow/ETL/Extractor/FileExtractor.php
src/core/etl/src/Flow/ETL/Extractor/PathFiltering.php
src/core/etl/src/Flow/ETL/Function/ScalarFunctionChain.php
src/core/etl/src/Flow/ETL/Function/StyleConverter/StringStyles.php
src/core/etl/src/Flow/ETL/Schema/Definition.php
src/core/etl/src/Flow/ETL/Schema.php
src/core/etl/src/Flow/ETL/Transformer/RenameAllCaseTransformer.php
src/core/etl/src/Flow/ETL/Transformer/RenameStrReplaceAllEntriesTransformer.php

Config.php

Line Element Reason
26 Config::CACHE_DIR_ENV

Use CacheConfig::CACHE_DIR_ENV instead

31 Config::SORT_MAX_MEMORY_ENV

Use SortConfig::SORT_MAX_MEMORY_ENV instead

DataFrame.php

Line Element Reason
699 DataFrame::renameAll()

use DataFrame::renameEach() with a RenameReplaceStrategy

711 DataFrame::renameAllLowerCase()

use DataFrame::renameEach() with a selected StringStyles

725 DataFrame::renameAllStyle()

use DataFrame::renameEach() with a selected Style

741 DataFrame::renameAllUpperCase()

use DataFrame::renameEach() with a selected Style

753 DataFrame::renameAllUpperCaseFirst()

use DataFrame::renameEach() with a selected Style

765 DataFrame::renameAllUpperCaseWord()

use DataFrame::renameEach() with a selected Style

944 DataFrame::validate()

Please use DataFrame::match instead

functions.php

Line Element Reason
349 chunks_from()

use batches() instead

709 type_structure()

please use \Flow\Types\DSL\type_structure(array $elements) instead

726 type_union()

please use \Flow\Types\DSL\type_union(Type $first, Type $second, Type ...$types) : UnionType

741 type_optional()

please use \Flow\Types\DSL\type_optional(Type $type) : OptionalType

754 type_from_array()

please use \Flow\Types\DSL\type_from_array(array $data) : Type

765 is_nullable()

please use \Flow\Types\DSL\is_nullable(Type $type) : bool

777 type_equals()

please use \Flow\Types\DSL\type_equals(Type $left, Type $right) : bool

790 types()

please use \Flow\Types\DSL\types(Type ...$types) : Types

819 type_list()

please use \Flow\Types\DSL\type_list(Type $element) : ListType

835 type_map()

please use \Flow\Types\DSL\type_map(StringType|IntegerType $key_type, Type $value_type) : MapType

861 type_json()

please use \Flow\Types\DSL\type_json() : JsonType

872 type_datetime()

please use \Flow\Types\DSL\type_datetime() : DateTimeType

883 type_date()

please use \Flow\Types\DSL\type_date() : DateType

894 type_time()

please use \Flow\Types\DSL\type_time() : TimeType

905 type_xml()

please use \Flow\Types\DSL\type_xml() : XMLType

916 type_xml_element()

please use \Flow\Types\DSL\type_xml_element() : XMLElementType

927 type_uuid()

please use \Flow\Types\DSL\type_uuid() : UuidType

938 type_int()

please use \Flow\Types\DSL\type_integer() : IntegerType

949 type_integer()

please use \Flow\Types\DSL\type_integer() : IntegerType

960 type_string()

please use \Flow\Types\DSL\type_string() : StringType

971 type_float()

please use \Flow\Types\DSL\type_float() : FloatType

982 type_boolean()

please use \Flow\Types\DSL\type_boolean() : BooleanType

997 type_instance_of()

please use \Flow\Types\DSL\type_instance_of(string $class) : InstanceOfType

1008 type_resource()

please use \Flow\Types\DSL\type_resource() : ResourceType

1019 type_array()

please use \Flow\Types\DSL\type_array() : ArrayType

1030 type_callable()

please use \Flow\Types\DSL\type_callable() : CallableType

1041 type_null()

please use \Flow\Types\DSL\type_null() : NullType

1056 type_enum()

please use \Flow\Types\DSL\type_enum(string $class) : EnumType

2040 struct_schema()

Use structure_schema() instead

2176 get_type()

Please use \Flow\Types\DSL\get_type($value) instead

2187 print_schema()

Please use schema_to_ascii($schema) instead

2322 type_is()

please use \Flow\Types\DSL\type_is($type, $typeClass): bool instead

2337 type_is_any()

please use \Flow\Types\DSL\type_is_any($type, $typeClass, ...$typeClasses): bool instead

2366 dom_element_to_string()

Please use \Flow\Types\DSL\dom_element_to_string() instead

FileExtractor.php

Line Element Reason
15 FileExtractor::addFilter()

Use withPathFilter instead

PathFiltering.php

Line Element Reason
17 PathFiltering::addFilter()

Use withPathFilter instead

ScalarFunctionChain.php

Line Element Reason
229 ScalarFunctionChain::domElementAttribute()

Use domElementAttributeValue instead

StringStyles.php

Line Element Reason
10 StringStyles

use Flow\ETL\String\String

Definition.php

Line Element Reason
568 Definition::nullable()

Use makeNullable() instead

Schema.php

Line Element Reason
143 Schema::entries()

use references() : References instead

185 Schema::getDefinition()

please use Schema::get() instead

306 Schema::nullable()

use makeNullable instead

RenameAllCaseTransformer.php

Line Element Reason
12 RenameAllCaseTransformer

Use DataFrame::renameEach() and RenameCaseTransformer

RenameStrReplaceAllEntriesTransformer.php

Line Element Reason
12 RenameStrReplaceAllEntriesTransformer

Use DataFrame::renameEach() and RenameReplaceStrategy

Search results