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
691 DataFrame::renameAll()

use DataFrame::renameEach() with a RenameReplaceStrategy

703 DataFrame::renameAllLowerCase()

use DataFrame::renameEach() with a selected StringStyles

717 DataFrame::renameAllStyle()

use DataFrame::renameEach() with a selected Style

733 DataFrame::renameAllUpperCase()

use DataFrame::renameEach() with a selected Style

745 DataFrame::renameAllUpperCaseFirst()

use DataFrame::renameEach() with a selected Style

757 DataFrame::renameAllUpperCaseWord()

use DataFrame::renameEach() with a selected Style

936 DataFrame::validate()

Please use DataFrame::match instead

functions.php

Line Element Reason
335 chunks_from()

use batches() instead

686 type_structure()

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

703 type_union()

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

718 type_optional()

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

731 type_from_array()

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

742 is_nullable()

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

754 type_equals()

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

767 types()

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

796 type_list()

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

812 type_map()

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

838 type_json()

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

849 type_datetime()

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

860 type_date()

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

871 type_time()

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

882 type_xml()

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

893 type_xml_element()

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

904 type_uuid()

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

915 type_int()

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

926 type_integer()

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

937 type_string()

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

948 type_float()

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

959 type_boolean()

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

974 type_instance_of()

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

985 type_resource()

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

996 type_array()

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

1007 type_callable()

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

1018 type_null()

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

1033 type_enum()

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

2008 struct_schema()

Use structure_schema() instead

2089 get_type()

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

2100 print_schema()

Please use schema_to_ascii($schema) instead

2235 type_is()

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

2250 type_is_any()

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

2279 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
558 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