Client::getMaxRedirects()

int getMaxRedirects() Returns the maximum number of requests that crawler can follow. Return Value int

Compiler::repr()

Compiler repr(mixed $value) Returns a PHP representation of a given value. Parameters mixed $value The value to convert Return Value Compiler The current compiler instance

IpUtils::checkIp4()

static bool checkIp4(string $requestIp, string $ip) Compares two IPv4 addresses. In case a subnet is given, it checks if it contains the request IP. Parameters string $requestIp IPv4 address to check string $ip IPv4 address or subnet in CIDR notation Return Value bool Whether the request IP matches the IP, or whether the request IP is within the CIDR subnet

Process::getOutput()

string getOutput() Returns the current output of the process (STDOUT). Return Value string The process output Exceptions LogicException in case the output has been disabled LogicException In case the process is not started

Cookie::isCleared()

bool isCleared() Whether this cookie is about to be cleared. Return Value bool

NativeSessionHandler

class NativeSessionHandler extends SessionHandler Adds SessionHandler functionality if available.

AbstractExtension::getAttributeMatchingTranslators()

callable[] getAttributeMatchingTranslators() Returns attribute operation translators. Return Value callable[]

FormDataCollector::getData()

array getData() Returns all collected data. Return Value array

Validator deprecated::validateValue()

ConstraintViolationListInterface validateValue(mixed $value, Constraint|Constraint[] $constraints, array|null $groups = null) Validates a value against a constraint or a list of constraints. Parameters mixed $value The value to validate. Constraint|Constraint[] $constraints The constraint(s) to validate against. array|null $groups The validation groups to validate. Return Value ConstraintViolationListInterface A list of constraint violations. If the list is empty, validation

HttpFoundationRequestHandler

class HttpFoundationRequestHandler implements RequestHandlerInterface A request processor using the {@link Request} class of the HttpFoundation component. Methods __construct(ServerParams $serverParams = null) {@inheritdoc} handleRequest(FormInterface $form, mixed $request = null) Submits a form if it was submitted. Details __construct(ServerParams $serverParams = null) {@inheritdoc} Parameters ServerParams $serverParams