DummyException deprecated

class DummyException extends ErrorException deprecated since version 2.5, to be removed in 3.0.

PhpProcess

class PhpProcess extends Process PhpProcess runs a PHP script in an independent process. $p = new PhpProcess('<?php echo "foo"; ?>'); $p->run(); print $p->getOutput()."\n"; Constants ERR OUT STATUS_READY STATUS_STARTED STATUS_TERMINATED STDIN STDOUT STDERR TIMEOUT_PRECISION ITER_NON_BLOCKING ITER_KEEP_OUTPUT ITER_SKIP_OUT ITER_SKIP_ERR Properties static array $exitCodes Exit codes translation table. from Process Methods

AuditableEntryInterface::isAuditSuccess()

bool isAuditSuccess() Whether auditing for successful denies is turned on Return Value bool

TableStyle::getCellRowContentFormat()

string getCellRowContentFormat() Gets row cell content format. Return Value string

NodeExtension::getName()

string getName() Returns extension name. Return Value string

NativeSessionStorage::setOptions()

setOptions(array $options) Sets session.* ini variables. For convenience we omit 'session.' from the beginning of the keys. Explicitly ignores other ini keys. Parameters array $options Session ini directives array(key => value) See also http://php.net/session.configuration

Definition::getConfigurator()

callable|null getConfigurator() Gets the configurator to call after the service is fully initialized. Return Value callable|null The PHP callable to call

RedirectController::redirectAction()

Response redirectAction(Request $request, string $route, bool $permanent = false, bool|array $ignoreAttributes = false) Redirects to another route with the given name. The response status code is 302 if the permanent parameter is false (default), and 301 if the redirection is permanent. In case the route name is empty, the status code will be 404 when permanent is false and 410 otherwise. Parameters Request $request The request instance string $route The route name to redirect

ButtonBuilder::getName()

string getName() Returns the name of the form used as HTTP parameter. Return Value string The form name

Request::isXmlHttpRequest()

bool isXmlHttpRequest() Returns true if the request is a XMLHttpRequest. It works if your JavaScript library sets an X-Requested-With HTTP header. It is known to work with common JavaScript frameworks: Return Value bool true if the request is an XMLHttpRequest, false otherwise