PackageInterface::getVersion()

string getVersion(string $path) Returns the asset version for an asset. Parameters string $path A path Return Value string The version string

AclVoter::supportsAttribute()

bool supportsAttribute(string $attribute) Checks if the voter supports the given attribute. Parameters string $attribute An attribute Return Value bool true if this Voter supports the attribute, false otherwise

FormConfigBuilder::resetModelTransformers()

FormConfigBuilderInterface resetModelTransformers() Clears the normalization transformers. Return Value FormConfigBuilderInterface The configuration object

LogicException

class LogicException extends LogicException implements ExceptionInterface LogicException.

NodeInterface::merge()

mixed merge(mixed $leftSide, mixed $rightSide) Merges two values together. Parameters mixed $leftSide mixed $rightSide Return Value mixed The merged values

BlankValidator

class BlankValidator 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 validate(mixed $value, Constraint $constraint) Checks if the passed value is valid. Details initial

InvalidDomainObjectException

class InvalidDomainObjectException extends Exception This exception is thrown when ObjectIdentity fails to construct an object identity from the passed domain object.

Component\Security\Core\Authentication\Token\Storage

Classes TokenStorage TokenStorage contains a TokenInterface Interfaces TokenStorageInterface The TokenStorageInterface.

AppVariable::getUser()

mixed getUser() Returns the current user. Return Value mixed See also TokenInterface::getUser()

FilterControllerArgumentsEvent

class FilterControllerArgumentsEvent extends FilterControllerEvent Allows filtering of controller arguments. You can call getController() to retrieve the controller and getArguments to retrieve the current arguments. With setArguments() you can replace arguments that are used to call the controller. Arguments set in the event must be compatible with the signature of the controller. Methods bool isPropagationStopped() Returns whether further event listeners should be triggered. from Even