InMemoryFactory

class InMemoryFactory implements UserProviderFactoryInterface InMemoryFactory creates services for the memory provider. Methods create(ContainerBuilder $container, $id, $config) getKey() addConfiguration(NodeDefinition $node) Details create(ContainerBuilder $container, $id, $config) Parameters ContainerBuilder $container $id $config getKey() addConfigura

InlineServiceDefinitionsPass::setRepeatedPass()

setRepeatedPass(RepeatedPass $repeatedPass) Sets the RepeatedPass interface. Parameters RepeatedPass $repeatedPass

InlineServiceDefinitionsPass::process()

process(ContainerBuilder $container) Processes the ContainerBuilder for inline service definitions. Parameters ContainerBuilder $container

InlineServiceDefinitionsPass

class InlineServiceDefinitionsPass implements RepeatablePassInterface Inline service definitions where this is possible. Methods setRepeatedPass(RepeatedPass $repeatedPass) Sets the RepeatedPass interface. process(ContainerBuilder $container) Processes the ContainerBuilder for inline service definitions. Details setRepeatedPass(RepeatedPass $repeatedPass) Sets the RepeatedPass interface. Parameters RepeatedPass $repeatedPass

InlineFragmentRenderer::render()

Response render(string|ControllerReference $uri, Request $request, array $options = array()) Renders a URI and returns the Response content. Parameters string|ControllerReference $uri A URI as a string or a ControllerReference instance Request $request A Request instance array $options An array of options Return Value Response A Response instance

InlineFragmentRenderer::getName()

string getName() Gets the name of the strategy. Return Value string The strategy name

InlineFragmentRenderer

class InlineFragmentRenderer extends RoutableFragmentRenderer Implements the inline rendering strategy where the Request is rendered by the current HTTP kernel. Methods setFragmentPath(string $path) Sets the fragment path that triggers the fragment listener. from RoutableFragmentRenderer __construct(HttpKernelInterface $kernel, EventDispatcherInterface $dispatcher = null) Constructor. Response render(string|ControllerReference $uri, Request $request, array $options = array()) Re

Inline::parseScalar()

static string parseScalar(string $scalar, int $flags, string $delimiters = null, array $stringDelimiters = array('"', '\''), int $i, bool $evaluate = true, array $references = array()) Parses a scalar to a YAML string. Parameters string $scalar int $flags string $delimiters array $stringDelimiters int $i &$i bool $evaluate array $references Return Value string A YAML string Exceptions ParseException When malformed inline YAML string is parsed

Inline::parse()

static array parse(string $value, int $flags, array $references = array()) Converts a YAML string to a PHP array. Parameters string $value A YAML string int $flags A bit field of PARSE_* constants to customize the YAML parser behavior array $references Mapping of variable names to values Return Value array A PHP array representing the YAML string Exceptions ParseException

Inline::isHash()

static bool isHash(array $value) Check if given array is hash or just normal indexed array. Parameters array $value The PHP array to check Return Value bool true if value is hash array, false otherwise