Translator::cssToXPath()

string cssToXPath(string $cssExpr, string $prefix = 'descendant-or-self::') Translates a CSS selector to an XPath expression. Parameters string $cssExpr string $prefix Return Value string

GlobalVariables::getSession()

Session|null getSession() Returns the current session. Return Value Session|null The session

NativeSessionStorage::setId()

setId(string $id) Sets the session ID. Parameters string $id

Session::invalidate()

bool invalidate(int $lifetime = null) Invalidates the current session. Clears all session attributes and flashes and regenerates the session and deletes the old session from persistence. Parameters int $lifetime Sets the cookie lifetime for the session cookie. A null value will leave the system settings unchanged, 0 sets the cookie to expire with browser session. Time is in seconds, and is not a Unix timestamp. Return Value bool True if session invalidated, false if error

ExceptionInterface

interface ExceptionInterface ExceptionInterface.

TokenInterface::setAuthenticated()

setAuthenticated(bool $isAuthenticated) Sets the authenticated flag. Parameters bool $isAuthenticated The authenticated flag

AbstractAdapter::handleUnserializeCallback()

static handleUnserializeCallback($class) Parameters $class

ResponseCacheStrategy::add()

add(Response $response) Adds a Response. Parameters Response $response

Bundle\SecurityBundle\DependencyInjection\Security

Namespaces Symfony\Bundle\SecurityBundle\DependencyInjection\Security\FactorySymfony\Bundle\SecurityBundle\DependencyInjection\Security\UserProvider

Process

class Process implements IteratorAggregate Process is a thin wrapper around proc_* functions to easily start independent PHP processes. 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. Methods __construct(string $commandline, string|null $cwd = null, a