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

use DataFrame::renameEach() with a RenameReplaceStrategy

680 DataFrame::renameAllLowerCase()

use DataFrame::renameEach() with a selected StringStyles

694 DataFrame::renameAllStyle()

use DataFrame::renameEach() with a selected Style

710 DataFrame::renameAllUpperCase()

use DataFrame::renameEach() with a selected Style

722 DataFrame::renameAllUpperCaseFirst()

use DataFrame::renameEach() with a selected Style

734 DataFrame::renameAllUpperCaseWord()

use DataFrame::renameEach() with a selected Style

913 DataFrame::validate()

Please use DataFrame::match instead

functions.php

Line Element Reason
648 type_structure()

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

665 type_union()

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

680 type_optional()

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

693 type_from_array()

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

704 is_nullable()

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

716 type_equals()

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

729 types()

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

758 type_list()

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

774 type_map()

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

800 type_json()

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

811 type_datetime()

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

822 type_date()

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

833 type_time()

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

844 type_xml()

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

855 type_xml_element()

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

866 type_uuid()

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

877 type_int()

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

888 type_integer()

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

899 type_string()

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

910 type_float()

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

921 type_boolean()

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

936 type_instance_of()

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

947 type_resource()

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

958 type_array()

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

969 type_callable()

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

980 type_null()

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

995 type_enum()

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

1961 struct_schema()

Use structure_schema() instead

2042 get_type()

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

2053 print_schema()

Please use schema_to_ascii($schema) instead

2188 type_is()

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

2203 type_is_any()

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

2232 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
528 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