Process::setTty()

Process setTty(bool $tty) Enables or disables the TTY mode. Parameters bool $tty True to enabled and false to disable Return Value Process The current Process instance Exceptions RuntimeException In case the TTY mode is not supported

AcceptHeaderItem

class AcceptHeaderItem Represents an Accept-* header item. Methods __construct(string $value, array $attributes = array()) Constructor. static AcceptHeaderItem fromString(string $itemValue) Builds an AcceptHeaderInstance instance from a string. string __toString() Returns header value's string representation. AcceptHeaderItem setValue(string $value) Set the item value. string getValue() Returns the item value. AcceptHeaderItem setQuality(float $quality) Set the i

FieldEntry::unserialize()

unserialize(string $serialized) Implementation of \Serializable Parameters string $serialized

ArgumentValueResolverInterface::supports()

bool supports(Request $request, ArgumentMetadata $argument) Whether this resolver can resolve the value for the given ArgumentMetadata. Parameters Request $request ArgumentMetadata $argument Return Value bool

FragmentRendererInterface::render()

Response render(string|ControllerReference $uri, Request $request, array $options = array()) Renders a URI and returns the Response content. Parameters string|ControllerReference $uri A URI as a string or a ControllerReference instance Request $request A Request instance array $options An array of options Return Value Response A Response instance

DelegatingLoader

class DelegatingLoader extends Loader DelegatingLoader delegates loading to other loaders using a loader resolver. This loader acts as an array of LoaderInterface objects - each having a chance to load a given resource (handled by the resolver) Methods LoaderResolverInterface getResolver() Gets the loader resolver. from Loader setResolver(LoaderResolverInterface $resolver) Sets the loader resolver. from Loader mixed import(mixed $resource, string|null $type = null) Imports a reso

AbstractAdapter deprecated::setDates()

AdapterInterface setDates(array $dates) Parameters array $dates Return Value AdapterInterface Current instance

MissingOptionsException

class MissingOptionsException extends ValidatorException Methods __construct($message, array $options) getOptions() Details __construct($message, array $options) Parameters $message array $options getOptions()

ServiceRouterLoader

class ServiceRouterLoader extends ObjectRouteLoader A route loader that executes a service to load the routes. This depends on the DependencyInjection component. Methods LoaderResolverInterface getResolver() Gets the loader resolver. from Loader setResolver(LoaderResolverInterface $resolver) Sets the loader resolver. from Loader mixed import(mixed $resource, string|null $type = null) Imports a resource. from Loader LoaderInterface resolve(mixed $resource, string|null $type =

RepeatedPass

class RepeatedPass implements CompilerPassInterface A pass that might be run repeatedly. Methods __construct(array $passes) process(ContainerBuilder $container) Process the repeatable passes that run more than once. setRepeat() Sets if the pass should repeat. RepeatablePassInterface[] getPasses() Returns the passes. Details __construct(array $passes) Parameters array $passes An array of RepeatablePassInterface objects Exception