MessageCatalogue::addCatalogue()

addCatalogue(MessageCatalogueInterface $catalogue) Merges translations from the given Catalogue into the current one. The two catalogues must have the same locale. Parameters MessageCatalogueInterface $catalogue A MessageCatalogueInterface instance

DelegatingLoader

class DelegatingLoader extends Loader DelegatingLoader delegates loading to other loaders using a loader resolver. This loader acts as an array of LoaderInterface objects - each having a chance to load a given resource (handled by the resolver) Methods LoaderResolverInterface getResolver() Gets the loader resolver. from Loader setResolver(LoaderResolverInterface $resolver) Sets the loader resolver. from Loader mixed import(mixed $resource, string|null $type = null) Imports a reso

UserSecurityIdentity

class UserSecurityIdentity implements SecurityIdentityInterface A SecurityIdentity implementation used for actual users Methods __construct(string $username, string $class) Constructor static UserSecurityIdentity fromAccount(UserInterface $user) Creates a user security identity from a UserInterface static UserSecurityIdentity fromToken(TokenInterface $token) Creates a user security identity from a TokenInterface string getUsername() Returns the username string getClas

TranslationDataCollector::lateCollect()

lateCollect() Collects data as late as possible.

AbstractAdapter

class AbstractAdapter implements AdapterInterface, LoggerAwareInterface Traits LoggerAwareTrait Methods static createSystemCache($namespace, $defaultLifetime, $version, $directory, LoggerInterface $logger = null) getItem($key) {@inheritdoc} getItems(array $keys = array()) {@inheritdoc} hasItem($key) {@inheritdoc} clear() {@inheritdoc} deleteItem($key) {@inheritdoc} deleteItems(array $keys) {@inheritdoc} save(CacheItemInterface $item) {@inheritdoc}

ExpressionValidator

class ExpressionValidator extends ConstraintValidator Constants PRETTY_DATE Whether to format {@link \DateTime} objects as RFC-3339 dates ("Y-m-d H:i:s"). OBJECT_TO_STRING Whether to cast objects with a "__toString()" method to strings. Methods initialize(ExecutionContextInterface $context) Initializes the constraint validator. from ConstraintValidator __construct($propertyAccessor = null, ExpressionLanguage $expressionLanguage = null) validate(mixed $value, Constraint $c

CheckboxType::configureOptions()

configureOptions(OptionsResolver $resolver) Configures the options for this type. Parameters OptionsResolver $resolver The resolver for the options

Response::setLastModified()

Response setLastModified(DateTime $date = null) Sets the Last-Modified HTTP header with a DateTime instance. Passing null as value will remove the header. Parameters DateTime $date A \DateTime instance or null to remove the header Return Value Response

Entry::getId()

int getId() The primary key of this ACE Return Value int

AuthenticationException

class AuthenticationException extends RuntimeException implements Serializable AuthenticationException is the base class for all authentication exceptions. Methods TokenInterface getToken() Get the token. setToken(TokenInterface $token) Set the token. serialize() unserialize($str) string getMessageKey() Message key to be used by the translation component. array getMessageData() Message data to be used by the translation component. Details