HttpKernel::terminate()

terminate(Request $request, Response $response) Terminates a request/response cycle. Should be called after sending the response and before shutting down the kernel. Parameters Request $request A Request instance Response $response A Response instance

Component\Intl\Data\Generator

Classes AbstractDataGenerator The rule for compiling the currency bundle. CurrencyDataGenerator The rule for compiling the currency bundle. GeneratorConfig Stores contextual information for resource bundle generation. LanguageDataGenerator The rule for compiling the language bundle. LocaleDataGenerator The rule for compiling the locale bundle. RegionDataGenerator The rule for compiling the region bundle. ScriptDataGenerator The rule for compiling the script bundle.

JsonResponse::setData()

JsonResponse setData(mixed $data = array()) Sets the data to be sent as JSON. Parameters mixed $data Return Value JsonResponse Exceptions InvalidArgumentException

StopwatchExtension

class StopwatchExtension extends Twig_Extension Twig extension for the stopwatch helper. Methods __construct(Stopwatch $stopwatch = null, $enabled = true) getStopwatch() getTokenParsers() getName() Details __construct(Stopwatch $stopwatch = null, $enabled = true) Parameters Stopwatch $stopwatch $enabled getStopwatch() getTokenParsers()

MemberMetadata::getName()

string getName() Returns the name of the member. Return Value string

DumpExtension::getFunctions()

getFunctions()

ArrayAccessibleResourceBundle::offsetSet()

offsetSet($offset, $value) Parameters $offset $value

FileProfilerStorage::read()

Profile read(string $token) Reads data associated with the given token. The method returns false if the token does not exist in the storage. Parameters string $token A token Return Value Profile The profile associated with token

Esi::createCacheStrategy()

ResponseCacheStrategyInterface createCacheStrategy() Returns a new cache strategy instance. Return Value ResponseCacheStrategyInterface A ResponseCacheStrategyInterface instance

ControllerNameParser

class ControllerNameParser ControllerNameParser converts controller from the short notation a:b:c (BlogBundle:Post:index) to a fully-qualified class::method string (Bundle\BlogBundle\Controller\PostController::indexAction). Methods __construct(KernelInterface $kernel) Constructor. string parse(string $controller) Converts a short notation a:b:c to a class::method. string build(string $controller) Converts a class::method notation to a short one (a:b:c). Details