PropelFactory::getKey()

getKey()

ExecutionContext::setConstraint()

setConstraint(Constraint $constraint) Sets the currently validated constraint. Parameters Constraint $constraint The validated constraint

Response::hasVary()

bool hasVary() Returns true if the response includes a Vary header. Return Value bool true if the response includes a Vary header, false otherwise

OutputFormatterStyleInterface::setOption()

setOption(string $option) Sets some specific style option. Parameters string $option The option name

SplFileInfo::getContents()

string getContents() Returns the contents of the file. Return Value string the contents of the file Exceptions RuntimeException

Application::isAutoExitEnabled()

bool isAutoExitEnabled() Gets whether to automatically exit after a command execution or not. Return Value bool Whether to automatically exit after a command execution or not

BinaryFileResponse::getContent()

string getContent() Gets the current response content. Return Value string Content

SvnCommit::getRevision()

string getRevision() Returns the revision of the commit. Return Value string The revision of the commit

RingBuffer

class RingBuffer implements ArrayAccess Implements a ring buffer. A ring buffer is an array-like structure with a fixed size. If the buffer is full, the next written element overwrites the first bucket in the buffer, then the second and so on. Methods __construct($size) offsetExists($key) {@inheritdoc} offsetGet($key) {@inheritdoc} offsetSet($key, $value) {@inheritdoc} offsetUnset($key) {@inheritdoc} Details __construct($size)

Form::offsetExists()

bool offsetExists(string $name) Returns true if the named field exists. Parameters string $name The field name Return Value bool true if the field exists, false otherwise