Collection

class Collection implements CollectionInterface Methods __construct(Connection $connection, Query $search) Entry[] toArray() count() getIterator() offsetExists($offset) offsetGet($offset) offsetSet($offset, $value) offsetUnset($offset) Details __construct(Connection $connection, Query $search) Parameters Connection $connection Query $search Entry[] toArray() R

ArrayNodeDefinition::addDefaultsIfNotSet()

ArrayNodeDefinition addDefaultsIfNotSet() Adds the default value if the node is not set in the configuration. This method is applicable to concrete nodes only (not to prototype nodes). If this function has been called and the node is not set during the finalization phase, it's default value will be derived from its children default values. Return Value ArrayNodeDefinition

ButtonBuilder::getForm()

FormInterface getForm() Creates the button. Return Value FormInterface The form

HttpFoundationExtension

class HttpFoundationExtension extends AbstractExtension Integrates the HttpFoundation component with the Form library. Methods FormTypeInterface getType(string $name) Returns a type by name. from AbstractExtension Boolean hasType(string $name) Returns whether the given type is supported. from AbstractExtension FormTypeExtensionInterface[] getTypeExtensions(string $name) Returns the extensions for the given type. from AbstractExtension Boolean hasTypeExtensions(string $name) R

BinaryFileResponse::create()

static Response create(SplFileInfo|string $file = null, int $status = 200, array $headers = array(), bool $public = true, null|string $contentDisposition = null, bool $autoEtag = false, bool $autoLastModified = true) Parameters SplFileInfo|string $file The file to stream int $status The response status code array $headers An array of response headers bool $public Files are public by default null|string $contentDisposition The type of Content-Disposition to set automat

AttributeNode

class AttributeNode extends AbstractNode Represents a "[|]" node. This component is a port of the Python cssselect library, which is copyright Ian Bicking, see https://github.com/SimonSapin/cssselect. Methods string getNodeName() from AbstractNode __construct(NodeInterface $selector, string $namespace, string $attribute, string $operator, string $value) NodeInterface getSelector() string getNamespace() string getAttribute() string getOperator() string g

AuditLoggerInterface

interface AuditLoggerInterface Interface for audit loggers Methods logIfNeeded(bool $granted, EntryInterface $ace) This method is called whenever access is granted, or denied, and administrative mode is turned off. Details logIfNeeded(bool $granted, EntryInterface $ace) This method is called whenever access is granted, or denied, and administrative mode is turned off. Parameters bool $granted EntryInterface $ace

WindowsPipes::areOpen()

bool areOpen() Returns if the current state has open file handles or pipes. Return Value bool

ButtonBuilder::getFormFactory()

FormFactoryInterface getFormFactory() Unsupported method. Return Value FormFactoryInterface The form factory

ArrayChoiceList::getStructuredValues()

string[] getStructuredValues() Returns the values in the structure originally passed to the list. Contrary to {@link getValues()}, the result is indexed by the original keys of the choices. If the original array contained nested arrays, these nested arrays are represented here as well: $form->add('field', 'choice', array( 'choices' => array( 'Decided' => array('Yes' => true, 'No' => false), 'Undecided' => array('Maybe' => null), ), ));