ConsoleEvent

class ConsoleEvent extends Event Allows to inspect input and output of a command. Methods Boolean isPropagationStopped() Returns whether further event listeners should be triggered. from Event stopPropagation() Stops the propagation of the event to further event listeners. from Event setDispatcher(EventDispatcherInterface $dispatcher) Stores the EventDispatcher that dispatches this Event from Event EventDispatcherInterface getDispatcher() Returns the EventDispatcher that disp

ExecutionContext deprecated::addViolationAt()

addViolationAt(string $subPath, string $message, array $parameters = array(), mixed $invalidValue = null, int|null $plural = null, int|null $code = null) Adds a violation at the validation graph node with the given property path relative to the current property path. Parameters string $subPath The relative property path for the violation string $message The error message array $parameters The parameters substituted in the error message mixed $invalidValue The invalid, validated val

ValueInterface::append()

ValueInterface append(string $expr) Parameters string $expr Return Value ValueInterface

ExpressionLanguage

class ExpressionLanguage Allows to compile and evaluate expressions written in your own DSL. Methods __construct(ParserCacheInterface $cache = null, array $providers = array()) string compile(Expression|string $expression, array $names = array()) Compiles an expression source code. string evaluate(Expression|string $expression, array $values = array()) Evaluate an expression. ParsedExpression parse(Expression|string $expression, array $names) Parses an expression. re

Inflector

class Inflector Converts words between singular and plural forms. Methods static string|array singularize(string $plural) Returns the singular form of a word. Details static string|array singularize(string $plural) Returns the singular form of a word. If the method can't determine the form with certainty, an array of the possible singulars is returned. Parameters string $plural A word in plural form Return Value string|array The singular form

Component\Security\Acl\Exception

Classes AclAlreadyExistsException This exception is thrown when someone tries to create an ACL for an object identity that already has one. AclNotFoundException This exception is thrown when we cannot locate an ACL for a passed ObjectIdentity implementation. ConcurrentModificationException This exception is thrown whenever you change shared properties of more than one ACL of the same class type concurrently. InvalidDomainObjectException This exception is thrown when ObjectIdentit

Component\Security\Acl\Voter

Classes AclVoter This voter can be used as a base class for implementing your own permissions. FieldVote This class is a lightweight wrapper around field vote requests which does not violate any interface contracts.

ExecutionContextInterface::setGroup()

setGroup(string|null $group) Sets the currently validated group. Parameters string|null $group The validated group

Component\Security\Acl\Model

Interfaces AclCacheInterface AclCache Interface AclInterface This interface represents an access control list (ACL) for a domain object. AclProviderInterface Provides a common interface for retrieving ACLs. AuditLoggerInterface Interface for audit loggers AuditableAclInterface This interface adds auditing capabilities to the ACL. AuditableEntryInterface ACEs can implement this interface if they support auditing capabilities. DomainObjectInterface This method can be im

SecurityExtension::addUserProviderFactory()

addUserProviderFactory(UserProviderFactoryInterface $factory) Parameters UserProviderFactoryInterface $factory