Browse documentation DSL References DSL stands for Domain Specific Language. In Flow, the DSL is a set of small functions that wrap object construction so pipelines read top-to-bottom. See the examples for usage in context. EXTRACTOR from_text View /** * @param Path|string $path */ from_text(Path|string $path) : TextExtractor LOADER to_text View /** * @param Path|string $path * @param string $new_line_separator - default PHP_EOL - @deprecated use withNewLineSeparator method instead * * @return Loader */ to_text(Path|string $path, string $new_line_separator) : Loader
to_text View /** * @param Path|string $path * @param string $new_line_separator - default PHP_EOL - @deprecated use withNewLineSeparator method instead * * @return Loader */ to_text(Path|string $path, string $new_line_separator) : Loader