WindowsPipes::haveReadSupport()

bool haveReadSupport() Returns if pipes are able to read output. Return Value bool

DateTimeToStringTransformer::reverseTransform()

mixed reverseTransform(mixed $value) Transforms a date string in the configured timezone into a DateTime object. Parameters mixed $value The value in the transformed representation Return Value mixed The value in the original representation Exceptions TransformationFailedException If the given value is not a string, or could not be transformed

CookieTheftException

class CookieTheftException extends AuthenticationException This exception is thrown when the RememberMeServices implementation detects that a presented cookie has already been used by someone else. Methods TokenInterface getToken() Get the token. from AuthenticationException setToken(TokenInterface $token) Set the token. from AuthenticationException serialize() from AuthenticationException unserialize($str) from AuthenticationException string getMessageKey() Message key

PreAuthenticatedToken

class PreAuthenticatedToken extends AbstractToken PreAuthenticatedToken implements a pre-authenticated token. Methods __construct(string|object $user, mixed $credentials, string $providerKey, array $roles = array()) Constructor. RoleInterface[] getRoles() Returns the user roles. from AbstractToken string getUsername() Returns the username. from AbstractToken mixed getUser() Returns a user representation. from AbstractToken setUser(mixed $user) Sets a user. from Abstract

Regex::setEndJoker()

Regex setEndJoker(bool $endJoker) Parameters bool $endJoker Return Value Regex

NumberFormatter::getAttribute()

bool|int getAttribute(int $attr) Returns an attribute value. Parameters int $attr An attribute specifier, one of the numeric attribute constants Return Value bool|int The attribute value on success or false on error See also http://www.php.net/manual/en/numberformatter.getattribute.php

NodeDefinition::defaultNull()

NodeDefinition|$this defaultNull() Sets null as the default value. Return Value NodeDefinition|$this

MongoDbSessionHandler::read()

read($sessionId) {@inheritdoc} Parameters $sessionId

FormConfigBuilder::setMapped()

FormConfigBuilderInterface setMapped(bool $mapped) Sets whether the form should be mapped to an element of its parent's data. Parameters bool $mapped Whether the form should be mapped Return Value FormConfigBuilderInterface The configuration object

OptionsResolver::setAllowedValues()

OptionsResolver setAllowedValues(string $option, mixed $allowedValues) Sets allowed values for an option. Instead of passing values, you may also pass a closures with the following signature: function ($value) { // return true or false } The closure receives the value as argument and should return true to accept the value and false to reject the value. Parameters string $option The option name mixed $allowedValues One or more acceptable values/closures Return Value Option