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

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

Request::setTrustedHosts()

static setTrustedHosts(array $hostPatterns) Sets a list of trusted host patterns. You should only list the hosts you manage using regexs. Parameters array $hostPatterns A list of trusted host patterns

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.

CommandTester

class CommandTester Eases the testing of console commands. Methods __construct(Command $command) Constructor. int execute(array $input, array $options = array()) Executes the command. string getDisplay(bool $normalize = false) Gets the display returned by the last execution of the command. InputInterface getInput() Gets the input instance used by the last execution of the command. OutputInterface getOutput() Gets the output instance used by the last execution of the c

FormValidator

class FormValidator 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($form, Constraint $constraint) Checks if the passed value is valid. Details initialize(Exec

ServiceReferenceGraphNode

class ServiceReferenceGraphNode Represents a node in your service graph. Value is typically a definition, or an alias. Methods __construct(string $id, mixed $value) addInEdge(ServiceReferenceGraphEdge $edge) Adds an in edge to this node. addOutEdge(ServiceReferenceGraphEdge $edge) Adds an out edge to this node. bool isAlias() Checks if the value of this node is an Alias. bool isDefinition() Checks if the value of this node is a Definition. string getId() Returns

SplCaster::castOuterIterator()

static castOuterIterator(OuterIterator $c, array $a, Stub $stub, $isNested) Parameters OuterIterator $c array $a Stub $stub $isNested

ProcessBuilder::inheritEnvironmentVariables()

ProcessBuilder inheritEnvironmentVariables(bool $inheritEnv = true) Sets whether environment variables will be inherited or not. Parameters bool $inheritEnv Return Value ProcessBuilder