ConstantNode::compile()

compile(Compiler $compiler) Parameters Compiler $compiler

DataMapperInterface::mapDataToForms()

mapDataToForms(mixed $data, FormInterface[] $forms) Maps properties of some data to a list of forms. Parameters mixed $data Structured data FormInterface[] $forms A list of {@link FormInterface} instances Exceptions UnexpectedTypeException if the type of the data parameter is not supported.

ObjectIdentityInterface::equals()

bool equals(ObjectIdentityInterface $identity) We specifically require this method so we can check for object equality explicitly, and do not have to rely on referencial equality instead. Though in most cases, both checks should result in the same outcome. Referential Equality: $object1 === $object2 Example for Object Equality: $object1->getId() === $object2->getId() Parameters ObjectIdentityInterface $identity Return Value bool

AuthenticationTrustResolverInterface::isFullFledged()

bool isFullFledged(TokenInterface $token = null) Resolves whether the passed token implementation is fully authenticated. Parameters TokenInterface $token Return Value bool

AuthenticationTrustResolverInterface::isRememberMe()

bool isRememberMe(TokenInterface $token = null) Resolves whether the passed token implementation is authenticated using remember-me capabilities. Parameters TokenInterface $token Return Value bool

DumperRoute

class DumperRoute Container for a Route. Methods __construct(string $name, Route $route) Constructor. string getName() Returns the route name. Route getRoute() Returns the route. Details __construct(string $name, Route $route) Constructor. Parameters string $name The route name Route $route The route string getName() Returns the route name. Return Value string The route name

ConnectionOptions::getOptionName()

static getOptionName($name) Parameters $name

Response::setClientTtl()

Response setClientTtl(int $seconds) Sets the response's time-to-live for private/client caches. This method adjusts the Cache-Control/max-age directive. Parameters int $seconds Number of seconds Return Value Response

RouteCollection::count()

int count() Gets the number of Routes in this collection. Return Value int The number of routes

ArrayNodeDefinition::canBeUnset()

ArrayNodeDefinition canBeUnset(bool $allow = true) Sets whether the node can be unset. Parameters bool $allow Return Value ArrayNodeDefinition