FormRegistry::getType()

ResolvedFormTypeInterface getType(string $name) Returns a form type by name. This methods registers the type extensions from the form extensions. Parameters string $name The name of the type Return Value ResolvedFormTypeInterface The type Exceptions InvalidArgumentException if the type can not be retrieved from any extension

TableStyle::getPaddingChar()

string getPaddingChar() Gets padding character, used for cell padding. Return Value string

MinuteTransformer deprecated

class MinuteTransformer extends MinuteTransformer deprecated since version 2.3, to be removed in 3.0. Use {@link \Symfony\Component\Intl\DateFormatter\DateFormat\MinuteTransformer} instead. Alias of {@link \Symfony\Component\Intl\DateFormatter\DateFormat\MinuteTransformer}. Methods string format(DateTime $dateTime, int $length) Format a value using a configured DateTime as date/time source. from MinuteTransformer string getReverseMatchingRegExp(int $length) Returns a reverse matc

Version::compare()

static bool compare(string $version1, string $version2, string $operator, int|null $precision = null) Compares two versions with an operator. This method is identical to {@link version_compare()}, except that you can pass the number of regarded version components in the last argument $precision. Examples: Version::compare('1.2.3', '1.2.4', '==') // => false Version::compare('1.2.3', '1.2.4', '==', 2) // => true Parameters string $version1 A version string str

AbstractFormLoginAuthenticator::onAuthenticationFailure()

Response|null onAuthenticationFailure(Request $request, AuthenticationException $exception) Override to change what happens after a bad username/password is submitted. Parameters Request $request AuthenticationException $exception Return Value Response|null

Locale::composeLocale()

static string composeLocale(array $subtags) Not supported. Returns a correctly ordered and delimited locale code. Parameters array $subtags A keyed array where the keys identify the particular locale code subtag Return Value string The corresponding locale code Exceptions MethodNotImplementedException See also http://www.php.net/manual/en/locale.composelocale.php

Hour2401Transformer::normalizeHour()

int normalizeHour(int $hour, string $marker = null) Returns a normalized hour value suitable for the hour transformer type. Parameters int $hour The hour value string $marker An optional AM/PM marker Return Value int The normalized hour value

ConnectionOptions

class ConnectionOptions A class representing the Ldap extension's options, which can be used with ldapsetoption or ldapgetoption. Constants API_INFO DEREF SIZELIMIT TIMELIMIT REFERRALS RESTART PROTOCOL_VERSION SERVER_CONTROLS CLIENT_CONTROLS API_FEATURE_INFO HOST_NAME ERROR_NUMBER ERROR_STRING MATCHED_DN DEBUG_LEVEL NETWORK_TIMEOUT X_SASL_MECH X_SASL_REALM X_SASL_AUTHCID X_SASL_AUTHZID Methods static getOpt

ConnectionOptions::getOption()

static int getOption(string $name) Fetches an option's corresponding constant value from an option name. The option name can either be in snake or camel case. Parameters string $name Return Value int Exceptions LdapException

ChoiceToValueTransformer::reverseTransform()

mixed reverseTransform(mixed $value) Transforms a value from the transformed representation to its original representation. This method is called when {@link Form::submit()} is called to transform the requests tainted data into an acceptable format for your data processing/model layer. This method must be able to deal with empty values. Usually this will be an empty string, but depending on your implementation other empty values are possible as well (such as NULL). The reasoning