FullTransformer::replaceQuoteMatch()

string replaceQuoteMatch(string $quoteMatch) Replaces single quotes at the start or end of a string with two single quotes. Parameters string $quoteMatch The string to replace the quotes Return Value string A string with the single quotes replaced

ValueInterface::render()

string render() Renders string representation of expression. Return Value string

AttributeMetadata::setMaxDepth()

setMaxDepth(int|null $maxDepth) Sets the serialization max depth for this attribute. Parameters int|null $maxDepth

PropertyAccessorBuilder::isExceptionOnInvalidIndexEnabled()

bool isExceptionOnInvalidIndexEnabled() Return Value bool whether an exception is thrown or null is returned when reading a non-existing index

RegistryInterface::getEntityManager()

EntityManager getEntityManager(string $name = null) Gets a named entity manager. Parameters string $name The entity manager name (null for the default one) Return Value EntityManager

OutputStyle::getVerbosity()

int getVerbosity() Gets the current verbosity of the output. Return Value int The current level of verbosity (one of the VERBOSITY constants)

ProgressIndicator::getFormatDefinition()

static string|null getFormatDefinition(string $name) Gets the format for a given name. Parameters string $name The format name Return Value string|null A format string

SecurityExtension::getXsdValidationBasePath()

string getXsdValidationBasePath() Returns the base path for the XSD files. Return Value string The XSD base path

EventDispatcherInterface::dispatch()

Event dispatch(string $eventName, Event $event = null) Dispatches an event to all registered listeners. Parameters string $eventName The name of the event to dispatch. The name of the event is the name of the method that is invoked on listeners. Event $event The event to pass to the event handlers/listeners If not supplied, an empty Event instance is created. Return Value Event

MessageCatalogueInterface::addFallbackCatalogue()

addFallbackCatalogue(MessageCatalogueInterface $catalogue) Merges translations from the given Catalogue into the current one only when the translation does not exist. This is used to provide default translations when they do not exist for the current locale. Parameters MessageCatalogueInterface $catalogue A MessageCatalogueInterface instance