ConstraintValidatorInterface::initialize()

initialize(ExecutionContextInterface $context) Initializes the constraint validator. Parameters ExecutionContextInterface $context The current validation context

Input::getOption()

mixed getOption(string $name) Returns the option value for a given option name. Parameters string $name The option name Return Value mixed The option value Exceptions InvalidArgumentException When option given doesn't exist

StopwatchPeriod

class StopwatchPeriod Represents an Period for an Event. Methods __construct(int $start, int $end) Constructor. int getStartTime() Gets the relative time of the start of the period. int getEndTime() Gets the relative time of the end of the period. int getDuration() Gets the time spent in this period. int getMemory() Gets the memory usage. Details __construct(int $start, int $end) Constructor. Parameters int $start The rel

AttributeNode::getAttribute()

string getAttribute() Return Value string

AbstractQuery

class AbstractQuery implements QueryInterface Methods __construct(ConnectionInterface $connection, $dn, $query, array $options = array()) Details __construct(ConnectionInterface $connection, $dn, $query, array $options = array()) Parameters ConnectionInterface $connection $dn $query array $options

ProfilerController::infoAction()

Response infoAction(Request $request, string $about) Displays information page. Parameters Request $request The current HTTP Request string $about The about message Return Value Response A Response instance Exceptions NotFoundHttpException

FormDataCollectorInterface::collectSubmittedData()

collectSubmittedData(FormInterface $form) Stores the submitted data of the given form and its children. Parameters FormInterface $form A root form

LengthValidator

class LengthValidator 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 initia

PasswordEncoderInterface

interface PasswordEncoderInterface PasswordEncoderInterface is the interface for all encoders. Methods string encodePassword(string $raw, string $salt) Encodes the raw password. bool isPasswordValid(string $encoded, string $raw, string $salt) Checks a raw password against an encoded password. Details string encodePassword(string $raw, string $salt) Encodes the raw password. Parameters string $raw The password to encode string $salt The s

LocaleListener::onKernelFinishRequest()

onKernelFinishRequest(FinishRequestEvent $event) Parameters FinishRequestEvent $event