ContextInterface

interface ContextInterface Holds information about the current request. Methods string getBasePath() Gets the base path. bool isSecure() Checks whether the request is secure or not. Details string getBasePath() Gets the base path. Return Value string The base path bool isSecure() Checks whether the request is secure or not. Return Value bool true if the request is secure, false otherwise

Client::getInternalRequest()

Request|null getInternalRequest() Returns the current BrowserKit Request instance. Return Value Request|null A BrowserKit Request instance

CacheItem::validateKey()

static validateKey(string $key) Validates a cache key according to PSR-6. Parameters string $key The key to validate Exceptions InvalidArgumentException When $key is not valid.

FullTransformer::getTransformers()

Transformer[] getTransformers() Return the array of Transformer objects. Return Value Transformer[] Associative array of Transformer objects (format char => Transformer)

ArrayNodeDefinition::canBeEnabled()

ArrayNodeDefinition canBeEnabled() Adds an "enabled" boolean to enable the current section. By default, the section is disabled. If any configuration is specified then the node will be automatically enabled: enableableArrayNode: {enabled: true, ...} # The config is enabled & default values get overridden enableableArrayNode: ~ # The config is enabled & use the default values enableableArrayNode: true # The config is enabled & use the default values enableableArrayNod

Bundle\SecurityBundle\DependencyInjection\Security\Factory

Classes AbstractFactory AbstractFactory is the base class for all classes inheriting from AbstractAuthenticationListener FormLoginFactory FormLoginFactory creates services for form login authentication. HttpBasicFactory HttpBasicFactory creates services for HTTP basic authentication. HttpDigestFactory HttpDigestFactory creates services for HTTP digest authentication. RememberMeFactory X509Factory X509Factory creates services for X509 certificate authentication. Interfa

LanguageBundleInterface

interface LanguageBundleInterface implements ResourceBundleInterface Gives access to language-related ICU data. Methods string[] getLocales() Returns the list of locales that this bundle supports. from ResourceBundleInterface string|null getLanguageName(string $language, string|null $region = null, string $displayLocale = null) Returns the name of a language. string[] getLanguageNames(string $displayLocale = null) Returns the names of all known languages. string|null getScr

ExtensionInterface

interface ExtensionInterface ExtensionInterface is the interface implemented by container extension classes. Methods load(array $configs, ContainerBuilder $container) Loads a specific configuration. string getNamespace() Returns the namespace to be used for this extension (XML namespace). string getXsdValidationBasePath() Returns the base path for the XSD files. string getAlias() Returns the recommended alias to use in XML. Details load(arr

MinuteTransformer::getReverseMatchingRegExp()

string getReverseMatchingRegExp(int $length) Returns a reverse matching regular expression of a string generated by format(). Parameters int $length The length of the value to be reverse matched Return Value string The reverse matching regular expression

ParameterBag::resolveValue()

resolveValue(mixed $value, array $resolving = array()) Replaces parameter placeholders (%name%) by their values. Parameters mixed $value A value array $resolving An array of keys that are being resolved (used internally to detect circular references) Exceptions ParameterNotFoundException if a placeholder references a parameter that does not exist ParameterCircularReferenceException if a circular reference if detected RuntimeException when a given parameter has a type problem.