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

use DataFrame::renameEach() with a RenameReplaceStrategy

654 DataFrame::renameAllLowerCase()

use DataFrame::renameEach() with a selected StringStyles

668 DataFrame::renameAllStyle()

use DataFrame::renameEach() with a selected Style

684 DataFrame::renameAllUpperCase()

use DataFrame::renameEach() with a selected Style

696 DataFrame::renameAllUpperCaseFirst()

use DataFrame::renameEach() with a selected Style

708 DataFrame::renameAllUpperCaseWord()

use DataFrame::renameEach() with a selected Style

887 DataFrame::validate()

Please use DataFrame::match instead

functions.php

Line Element Reason
642 type_structure()

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

659 type_union()

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

674 type_optional()

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

687 type_from_array()

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

698 is_nullable()

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

710 type_equals()

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

723 types()

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

752 type_list()

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

768 type_map()

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

794 type_json()

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

805 type_datetime()

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

816 type_date()

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

827 type_time()

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

838 type_xml()

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

849 type_xml_element()

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

860 type_uuid()

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

871 type_int()

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

882 type_integer()

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

893 type_string()

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

904 type_float()

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

915 type_boolean()

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

930 type_instance_of()

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

941 type_resource()

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

952 type_array()

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

963 type_callable()

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

974 type_null()

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

989 type_enum()

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

1913 struct_schema()

Use structure_schema() instead

1994 get_type()

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

2005 print_schema()

Please use schema_to_ascii($schema) instead

2140 type_is()

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

2155 type_is_any()

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

2184 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
204 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