BCryptPasswordEncoder

class BCryptPasswordEncoder extends BasePasswordEncoder Constants MAX_PASSWORD_LENGTH Methods __construct(int $cost) Constructor. 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 __construct(int $cost) Constructor. Parameters int $cost The algorithmic cost that should be used Exce

TranslationNodeVisitor

class TranslationNodeVisitor extends Twig_BaseNodeVisitor TranslationNodeVisitor extracts translation messages. Constants UNDEFINED_DOMAIN Methods enable() disable() getMessages() getPriority() {@inheritdoc} Details enable() disable() getMessages() getPriority() {@inheritdoc}

PropertyAccessExtractorInterface

interface PropertyAccessExtractorInterface Guesses if the property can be accessed or mutated. Methods bool|null isReadable(string $class, string $property, array $context = array()) Is the property readable? bool|null isWritable(string $class, string $property, array $context = array()) Is the property writable? Details bool|null isReadable(string $class, string $property, array $context = array()) Is the property readable? Parameters s

Button::getExtraData()

array getExtraData() Unsupported method. Return Value array The submitted data which do not belong to a child

DefaultAuthenticationFailureHandler

class DefaultAuthenticationFailureHandler implements AuthenticationFailureHandlerInterface Class with the default authentication failure handling logic. Can be optionally be extended from by the developer to alter the behaviour while keeping the default behaviour. Methods __construct(HttpKernelInterface $httpKernel, HttpUtils $httpUtils, array $options = array(), LoggerInterface $logger = null) Constructor. array getOptions() Gets the options. setOptions(array $options) Sets th

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

ChainAdapter

class ChainAdapter implements AdapterInterface Chains several adapters together. Cached items are fetched from the first adapter having them in its data store. They are saved and deleted in all adapters at once. Methods __construct(array $adapters, int $maxLifetime) getItem($key) {@inheritdoc} getItems(array $keys = array()) {@inheritdoc} hasItem($key) {@inheritdoc} clear() {@inheritdoc} deleteItem($key) {@inheritdoc} deleteItems(array $keys) {@inheritdoc}

Locale deprecated::getDisplayLocales()

static array getDisplayLocales(string $locale) Returns the locale names for a locale. Parameters string $locale The locale to use for the locale names Return Value array The locale names with their codes as keys Exceptions RuntimeException When the resource bundles cannot be loaded

PackageInterface

interface PackageInterface Asset package interface. Methods string getVersion(string $path) Returns the asset version for an asset. string getUrl(string $path) Returns an absolute or root-relative public path. Details string getVersion(string $path) Returns the asset version for an asset. Parameters string $path A path Return Value string The version string string getUrl(string $path) Returns an

FormConfigBuilder::setDataMapper()

FormConfigBuilderInterface setDataMapper(DataMapperInterface $dataMapper = null) Sets the data mapper used by the form. Parameters DataMapperInterface $dataMapper Return Value FormConfigBuilderInterface The configuration object