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
27 Config::CACHE_DIR_ENV

Use CacheConfig::CACHE_DIR_ENV instead

32 Config::SORT_MAX_MEMORY_ENV

Use SortConfig::SORT_MAX_MEMORY_ENV instead

DataFrame.php

Line Element Reason
682 DataFrame::renameAll()

use DataFrame::renameEach() with a RenameReplaceStrategy

694 DataFrame::renameAllLowerCase()

use DataFrame::renameEach() with a selected StringStyles

708 DataFrame::renameAllStyle()

use DataFrame::renameEach() with a selected Style

724 DataFrame::renameAllUpperCase()

use DataFrame::renameEach() with a selected Style

736 DataFrame::renameAllUpperCaseFirst()

use DataFrame::renameEach() with a selected Style

748 DataFrame::renameAllUpperCaseWord()

use DataFrame::renameEach() with a selected Style

896 DataFrame::validate()

Please use DataFrame::match instead

functions.php

Line Element Reason
387 chunks_from()

use batches() instead

751 type_structure()

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

768 type_union()

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

783 type_optional()

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

796 type_from_array()

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

807 is_nullable()

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

819 type_equals()

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

832 types()

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

861 type_list()

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

877 type_map()

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

903 type_json()

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

914 type_datetime()

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

925 type_date()

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

936 type_time()

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

947 type_xml()

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

958 type_xml_element()

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

969 type_uuid()

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

980 type_int()

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

991 type_integer()

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

1002 type_string()

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

1013 type_float()

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

1024 type_boolean()

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

1039 type_instance_of()

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

1050 type_resource()

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

1061 type_array()

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

1072 type_callable()

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

1083 type_null()

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

1098 type_enum()

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

2041 struct_schema()

Use structure_schema() instead

2242 get_type()

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

2253 print_schema()

Please use schema_to_ascii($schema) instead

2388 type_is()

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

2403 type_is_any()

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

2432 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
69 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

329 Schema::nullable()

use makeNullable instead

RenameAllCaseTransformer.php

Line Element Reason
13 RenameAllCaseTransformer

Use DataFrame::renameEach() and RenameCaseTransformer

RenameStrReplaceAllEntriesTransformer.php

Line Element Reason
13 RenameStrReplaceAllEntriesTransformer

Use DataFrame::renameEach() and RenameReplaceStrategy

Search results