AdapterInterface deprecated::setMode()

AdapterInterface setMode(int $mode) Parameters int $mode Return Value AdapterInterface Current instance

Route::setOptions()

setOptions($options) Parameters $options

Crawler::xpathLiteral()

static string xpathLiteral(string $s) Converts string for XPath expressions. Escaped characters are: quotes (") and apostrophe ('). Examples: echo Crawler::xpathLiteral('foo " bar'); //prints 'foo " bar' echo Crawler::xpathLiteral("foo ' bar"); //prints "foo ' bar" echo Crawler::xpathLiteral('a\'b"c'); //prints concat('a', "'", 'b"c') Parameters string $s String to be escaped Return Value string Converted string

LdapClient deprecated::getEntryManager()

EntryManagerInterface getEntryManager() Return Value EntryManagerInterface

DnsMock::getmxrr()

static getmxrr($hostname, $mxhosts, $weight = null) Parameters $hostname $mxhosts $weight

Form::all()

FormInterface[] all() Returns all children in this group. Return Value FormInterface[] An array of FormInterface instances

ServiceReferenceGraph::getNode()

ServiceReferenceGraphNode getNode(string $id) Gets a node by identifier. Parameters string $id The id to retrieve Return Value ServiceReferenceGraphNode The node matching the supplied identifier Exceptions InvalidArgumentException if no node matches the supplied identifier

FileExistenceResource::serialize()

serialize() {@inheritdoc}

PdoSessionHandler

class PdoSessionHandler implements SessionHandlerInterface Session handler using a PDO connection to read and write data. It works with MySQL, PostgreSQL, Oracle, SQL Server and SQLite and implements different locking strategies to handle concurrent access to the same session. Locking is necessary to prevent loss of data due to race conditions and to keep the session data consistent between read() and write(). With locking, requests for the same session will wait until the other one finished

LanguageBundleInterface::getScriptName()

string|null getScriptName(string $script, string $language = null, string $displayLocale = null) Returns the name of a script. Parameters string $script A script code (e.g. "Hans") string $language Optional. A language code (e.g. "zh") string $displayLocale Optional. The locale to return the name in Defaults to {@link \Locale::getDefault()}. Return Value string|null The name of the script or NULL if not found