Button::getViewData()

mixed getViewData() Unsupported method. Return Value mixed

Response::getHeaders()

array getHeaders() Gets the response headers. Return Value array The response headers

Request::isNoCache()

bool isNoCache() Return Value bool

Dumper::dump()

string dump(mixed $input, int $inline, int $indent, int $flags) Dumps a PHP value to YAML. Parameters mixed $input The PHP value int $inline The level where you switch to inline YAML int $indent The level of indentation (used internally) int $flags A bit field of Yaml::DUMP_* constants to customize the dumped YAML string Return Value string The YAML representation of the PHP value

Escaper::requiresDoubleQuoting()

static bool requiresDoubleQuoting(string $value) Determines if a PHP value would require double quoting in YAML. Parameters string $value A PHP value Return Value bool True if the value would require double quotes

ConfigDataCollector::hasWinCache()

bool hasWinCache() Returns true if WinCache is enabled. Return Value bool true if WinCache is enabled, false otherwise

MutableAclInterface::updateClassFieldAce()

updateClassFieldAce(int $index, string $field, int $mask, string $strategy = null) Updates a class-field-based ACE Parameters int $index string $field int $mask string $strategy if null the strategy should not be changed

MappingRule::getOrigin()

FormInterface getOrigin() Return Value FormInterface

MessageCatalogue

class MessageCatalogue implements MessageCatalogueInterface, MetadataAwareInterface MessageCatalogue. Methods __construct(string $locale, array $messages = array()) Constructor. string getLocale() Gets the catalogue locale. array getDomains() Gets the domains. array all(string $domain = null) Gets the messages within a given domain. set(string $id, string $translation, string $domain = 'messages') Sets a message translation. bool has(string $id, string $domain =

Response::getTtl()

int|null getTtl() Returns the response's time-to-live in seconds. It returns null when no freshness information is present in the response. When the responses TTL is <= 0, the response may not be served from cache without first revalidating with the origin. Return Value int|null The TTL in seconds