Connection

class Connection extends AbstractConnection Methods __construct(array $config = array()) from AbstractConnection __destruct() bool isBound() Checks whether the connection was already bound or not. bind(string $dn = null, string $password = null) Binds the connection against a DN and password. resource getResource() Returns a link resource. setOption($name, $value) getOption($name) Details __construct(array $config = array())

PassConfig

class PassConfig Compiler Pass Configuration. This class has a default configuration embedded. Constants TYPE_AFTER_REMOVING TYPE_BEFORE_OPTIMIZATION TYPE_BEFORE_REMOVING TYPE_OPTIMIZE TYPE_REMOVE Methods __construct() array getPasses() Returns all passes in order to be processed. addPass(CompilerPassInterface $pass, string $type = self::TYPE_BEFORE_OPTIMIZATION) Adds a pass. array getAfterRemovingPasses() Gets all passes for the AfterRemoving pass.

Parser

class Parser implements ParserInterface CSS selector parser. This component is a port of the Python cssselect library, which is copyright Ian Bicking, see https://github.com/SimonSapin/cssselect. Methods __construct(Tokenizer $tokenizer = null) Constructor. SelectorNode[] parse(string $source) Parses given selector source into an array of tokens. static array parseSeries(array $tokens) Parses the arguments for ":nth-child()" and friends. Details

Response::setNotModified()

Response setNotModified() Modifies the response so that it conforms to the rules defined for a 304 status code. This sets the status, removes the body, and discards any headers that MUST NOT be included in 304 responses. Return Value Response See also http://tools.ietf.org/html/rfc2616#section-10.3.5

LocaleType

class LocaleType extends AbstractType Methods buildForm(FormBuilderInterface $builder, array $options) Builds the form. from AbstractType buildView(FormView $view, FormInterface $form, array $options) Builds the form view. from AbstractType finishView(FormView $view, FormInterface $form, array $options) Finishes the form view. from AbstractType configureOptions(OptionsResolver $resolver) Configures the options for this type. string getBlockPrefix() Returns the prefix of th

PropertyAccessorInterface::getValue()

mixed getValue(object|array $objectOrArray, string|PropertyPathInterface $propertyPath) Returns the value at the end of the property path of the object graph. Example: use Symfony\Component\PropertyAccess\PropertyAccess; $propertyAccessor = PropertyAccess::createPropertyAccessor(); echo $propertyAccessor->getValue($object, 'child.name); // equals echo $object->getChild()->getName(); This method first tries to find a public getter for each property in the path. The nam

BaseType::configureOptions()

configureOptions(OptionsResolver $resolver) Configures the options for this type. Parameters OptionsResolver $resolver The resolver for the options

EventDispatcherInterface::addSubscriber()

addSubscriber(EventSubscriberInterface $subscriber) Adds an event subscriber. The subscriber is asked for all the events he is interested in and added as a listener for these events. Parameters EventSubscriberInterface $subscriber The subscriber

ResourceCheckerConfigCache

class ResourceCheckerConfigCache implements ConfigCacheInterface ResourceCheckerConfigCache uses instances of ResourceCheckerInterface to check whether cached data is still fresh. Methods __construct(string $file, array $resourceCheckers = array()) string getPath() Gets the cache file path. bool isFresh() Checks if the cache is still fresh. write(string $content, array $metadata = null) Writes cache. Details __construct(string $file, array

SubmitType

class SubmitType extends AbstractType implements SubmitButtonTypeInterface A submit button. Methods buildForm(FormBuilderInterface $builder, array $options) Builds the form. from AbstractType buildView(FormView $view, FormInterface $form, array $options) Builds the form view. finishView(FormView $view, FormInterface $form, array $options) Finishes the form view. from AbstractType configureOptions(OptionsResolver $resolver) Configures the options for this type. from Abstract