RouteCollectionBuilder::add()

Route add(string $path, string $controller, string|null $name = null) Adds a route and returns it for future modification. Parameters string $path The route path string $controller The route's controller string|null $name The name to give this route Return Value Route

MergeDoctrineCollectionListener::onBind()

onBind(FormEvent $event) deprecated deprecated since version 3.1, to be removed in 4.0. Use {@link onSubmit()} instead. Alias of {@link onSubmit()}. Parameters FormEvent $event

Stopwatch::isStarted()

bool isStarted(string $name) Checks if the event was started. Parameters string $name The event name Return Value bool

IdReader::getIdValue()

mixed getIdValue(object $object) Returns the ID value for an object. This method assumes that the object has a single-column ID. Parameters object $object The object Return Value mixed The ID value

IdReader

class IdReader A utility for reading object IDs. Methods __construct(ObjectManager $om, ClassMetadata $classMetadata) bool isSingleId() Returns whether the class has a single-column ID. bool isIntId() Returns whether the class has a single-column integer ID. mixed getIdValue(object $object) Returns the ID value for an object. string getIdField() Returns the name of the ID field. Details __construct(ObjectManager $om, ClassMetadata $cl

MessageDataCollector deprecated::collect()

collect(Request $request, Response $response, Exception $exception = null) Collects data for the given Request and Response. Parameters Request $request A Request instance Response $response A Response instance Exception $exception An Exception instance

Locale::getDisplayRegion()

static string getDisplayRegion(string $locale, string $inLocale = null) Not supported. Returns the localized display name for the locale region. Parameters string $locale The locale code to return the display region from string $inLocale Optional format locale code to use to display the region name Return Value string The localized region display name Exceptions MethodNotImplementedException See also http://www.php.net/manual/en/locale.getdisplayregion.php

StructuredBundleReader::getLocales()

string[] getLocales(string $path) Reads the available locales of a resource bundle. Parameters string $path The path to the resource bundle. Return Value string[] A list of supported locale codes.

AbstractType::getParent()

string|null getParent() Returns the name of the parent type. Return Value string|null The name of the parent type if any, null otherwise

RegisterEventListenersAndSubscribersPass

class RegisterEventListenersAndSubscribersPass implements CompilerPassInterface Registers event listeners and subscribers to the available doctrine connections. Methods __construct(string $connections, string $managerTemplate, string $tagPrefix) Constructor. process(ContainerBuilder $container) You can modify the container here before it is dumped to PHP code. Details __construct(string $connections, string $managerTemplate, string $tagPrefix)