RedisAdapter

class RedisAdapter extends AbstractAdapter Traits LoggerAwareTrait Methods static createSystemCache($namespace, $defaultLifetime, $version, $directory, LoggerInterface $logger = null) from AbstractAdapter getItem($key) {@inheritdoc} from AbstractAdapter getItems(array $keys = array()) {@inheritdoc} from AbstractAdapter hasItem($key) {@inheritdoc} from AbstractAdapter clear() {@inheritdoc} from AbstractAdapter deleteItem($key) {@inheritdoc} from AbstractAdapter

InputArgument

class InputArgument Represents a command line argument. Constants REQUIRED OPTIONAL IS_ARRAY Methods __construct(string $name, int $mode = null, string $description = '', mixed $default = null) Constructor. string getName() Returns the argument name. bool isRequired() Returns true if the argument is required. bool isArray() Returns true if the argument can take multiple values. setDefault(mixed $default = null) Sets the default value. mixed getDefau

FormConfigBuilder::addEventSubscriber()

FormConfigBuilderInterface addEventSubscriber(EventSubscriberInterface $subscriber) Adds an event subscriber for events on this form. Parameters EventSubscriberInterface $subscriber The subscriber to attach Return Value FormConfigBuilderInterface The configuration object

FormInterface::submit()

FormInterface submit(null|string|array $submittedData, bool $clearMissing = true) Submits data to the form, transforms and validates it. Parameters null|string|array $submittedData The submitted data bool $clearMissing Whether to set fields to NULL when they are missing in the submitted data. Return Value FormInterface The form instance Exceptions AlreadySubmittedException If the form has already been submitted.

ChoiceListInterface::getStructuredValues()

string[] getStructuredValues() Returns the values in the structure originally passed to the list. Contrary to {@link getValues()}, the result is indexed by the original keys of the choices. If the original array contained nested arrays, these nested arrays are represented here as well: $form->add('field', 'choice', array( 'choices' => array( 'Decided' => array('Yes' => true, 'No' => false), 'Undecided' => array('Maybe' => null), ), ));

ChoiceQuestion::getPrompt()

string getPrompt() Gets the prompt for choices. Return Value string

DefaultAuthenticationSuccessHandler::onAuthenticationSuccess()

Response onAuthenticationSuccess(Request $request, TokenInterface $token) This is called when an interactive authentication attempt succeeds. This is called by authentication listeners inheriting from AbstractAuthenticationListener. Parameters Request $request TokenInterface $token Return Value Response never null

QuarterTransformer

class QuarterTransformer extends Transformer Parser and formatter for quarter format. Methods string format(DateTime $dateTime, int $length) Format a value using a configured DateTime as date/time source. string getReverseMatchingRegExp(int $length) Returns a reverse matching regular expression of a string generated by format(). array extractDateOptions(string $matched, int $length) Extract date options from a matched value returned by the processing of the reverse matching reg

EntryInterface

interface EntryInterface implements Serializable This class represents an individual entry in the ACL list. Instances MUST be immutable, as they are returned by the ACL and should not allow client modification. Methods AclInterface getAcl() The ACL this ACE is associated with. int getId() The primary key of this ACE int getMask() The permission mask of this ACE SecurityIdentityInterface getSecurityIdentity() The security identity associated with this ACE string getStr

AbstractLoader

class AbstractLoader implements LoaderInterface Base loader for validation metadata. This loader supports the loading of constraints from Symfony's default namespace (see {@link DEFAULT_NAMESPACE}) using the short class names of those constraints. Constraints can also be loaded using their fully qualified class names. At last, namespace aliases can be defined to load constraints with the syntax "alias:ShortName". Constants DEFAULT_NAMESPACE The namespace to load constraints from by default