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_dynamic_http_requests(ClientInterface $client, NextRequestFactory $requestFactory) : PsrHttpClientDynamicExtractor /**
* @param iterable<RequestInterface> $requests
*/
from_static_http_requests(ClientInterface $client, iterable $requests) : PsrHttpClientStaticExtractor