FormRenderer::humanize()

string humanize(string $text) Makes a technical name human readable. Sequences of underscores are replaced by single spaces. The first letter of the resulting string is capitalized, while all other letters are turned to lowercase. Parameters string $text The text to humanize Return Value string The humanized text

Table::setRows()

setRows(array $rows) Parameters array $rows

RouteCollection::add()

add(string $name, Route $route) Adds a route. Parameters string $name The route name Route $route A Route instance

Request::getEncodings()

array getEncodings() Gets a list of encodings acceptable by the client browser. Return Value array List of encodings in preferable order

SessionInterface

interface SessionInterface Interface for the session. Methods bool start() Starts the session storage. string getId() Returns the session ID. setId(string $id) Sets the session ID. mixed getName() Returns the session name. setName(string $name) Sets the session name. bool invalidate(int $lifetime = null) Invalidates the current session. bool migrate(bool $destroy = false, int $lifetime = null) Migrates the current session to a new session id while maintainin

Token::isDelimiter()

bool isDelimiter(array $values = array()) Parameters array $values Return Value bool

ContainerAwareEventManager::getListeners()

array getListeners(string $event = null) Gets the listeners of a specific event or all listeners. Parameters string $event The name of the event Return Value array The event listeners for the specified event, or all event listeners

Route::getMethods()

getMethods()

PersistentTokenInterface

interface PersistentTokenInterface Interface to be implemented by persistent token classes (such as Doctrine entities representing a remember-me token). Methods string getClass() Returns the class of the user. string getUsername() Returns the username. string getSeries() Returns the series. string getTokenValue() Returns the token value. DateTime getLastUsed() Returns the time the token was last used. Details string getClass()

EntityChoiceList deprecated::getIndicesForChoices()

array getIndicesForChoices(array $entities) deprecated deprecated since version 2.4, to be removed in 3.0. Returns the indices corresponding to the given entities. Parameters array $entities Return Value array An array of indices with ascending, 0-based numeric keys See also ChoiceListInterface