TableHelper deprecated::setCellHeaderFormat()

TableHelper setCellHeaderFormat(string $cellHeaderFormat) Sets header cell format. Parameters string $cellHeaderFormat Return Value TableHelper

Finder::ignoreUnreadableDirs()

Finder|SplFileInfo[] ignoreUnreadableDirs(bool $ignore = true) Tells finder to ignore unreadable directories. By default, scanning unreadable directories content throws an AccessDeniedException. Parameters bool $ignore Return Value Finder|SplFileInfo[] The current Finder instance

PrototypedArrayNode::hasDefaultValue()

bool hasDefaultValue() Checks if the node has a default value. Return Value bool If the node has a default value

RoleSecurityIdentity

class RoleSecurityIdentity implements SecurityIdentityInterface A SecurityIdentity implementation for roles Methods __construct(mixed $role) Constructor string getRole() Returns the role name equals(SecurityIdentityInterface $sid) This method is used to compare two security identities in order to not rely on referential equality. string __toString() Returns a textual representation of this security identity. Details __construct(mixed $role)

AssetsHelper::getName()

string getName() Returns the canonical name of this helper. Return Value string The canonical name

FormConfigBuilderInterface::setRequestHandler()

FormConfigBuilderInterface setRequestHandler(RequestHandlerInterface $requestHandler) Sets the request handler used by the form. Parameters RequestHandlerInterface $requestHandler Return Value FormConfigBuilderInterface The configuration object

AuthenticatedVoter

class AuthenticatedVoter implements VoterInterface AuthenticatedVoter votes if an attribute like ISAUTHENTICATEDFULLY, ISAUTHENTICATEDREMEMBERED, or ISAUTHENTICATEDANONYMOUSLY is present. This list is most restrictive to least restrictive checking. Constants IS_AUTHENTICATED_FULLY IS_AUTHENTICATED_REMEMBERED IS_AUTHENTICATED_ANONYMOUSLY Methods __construct(AuthenticationTrustResolverInterface $authenticationTrustResolver) Constructor. int vote(TokenInterface $token, mi

ValidatorInterface deprecated::validateValue()

ConstraintViolationListInterface validateValue(mixed $value, Constraint|Constraint[] $constraints, array|null $groups = null) deprecated deprecated since version 2.5, to be removed in 3.0. Renamed to {@link Validator\ValidatorInterface::validate()} in Symfony 2.5. Validates a value against a constraint or a list of constraints. Parameters mixed $value The value to validate. Constraint|Constraint[] $constraints The constraint(s) to validate against. array|null $groups The v

ContextualValidatorInterface::validatePropertyValue()

ContextualValidatorInterface validatePropertyValue(object|string $objectOrClass, string $propertyName, mixed $value, array|null $groups = null) Validates a value against the constraints specified for an object's property. Parameters object|string $objectOrClass The object or its class name string $propertyName The name of the property mixed $value The value to validate against the property's constraints array|null $groups The validation groups to validate. If none is given, "D

Command::setName()

Command setName(string $name) Sets the name of the command. This method can set both the namespace and the name if you separate them by a colon (:) $command->setName('foo:bar'); Parameters string $name The command name Return Value Command The current instance Exceptions InvalidArgumentException When the name is invalid