AbstractProxy::setName()

setName(string $name) Sets the session name. Parameters string $name Exceptions LogicException

CheckboxType::buildForm()

buildForm(FormBuilderInterface $builder, array $options) Builds the form. This method is called for each type in the hierarchy starting from the top most type. Type extensions can further modify the form. Parameters FormBuilderInterface $builder The form builder array $options The options

PropertyPathInterface::isIndex()

bool isIndex(int $index) Returns whether the element at the given index is an array index. Parameters int $index The index in the property path Return Value bool Whether the element at this index is an array index Exceptions OutOfBoundsException If the offset is invalid

DelegatingLoader

class DelegatingLoader extends DelegatingLoader DelegatingLoader delegates route loading to other loaders using a loader resolver. This implementation resolves the _controller attribute from the short notation to the fully-qualified form (from a:b:c to class:method). 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

ConfigDataCollector::getAppName()

string getAppName() Gets the application name. Return Value string The application name

UrlMatcher::matchRequest()

array matchRequest(Request $request) Tries to match a request with a set of routes. If the matcher can not find information, it must throw one of the exceptions documented below. Parameters Request $request The request to match Return Value array An array of parameters Exceptions ResourceNotFoundException If no matching resource could be found MethodNotAllowedException If a matching resource was found but the request method is not allowed

BundleInterface::getName()

string getName() Returns the bundle name (the class short name). Return Value string The Bundle name

FormBuilder::count()

count() {@inheritdoc}

Application::doRun()

int doRun(InputInterface $input, OutputInterface $output) Runs the current application. Parameters InputInterface $input An Input instance OutputInterface $output An Output instance Return Value int 0 if everything went fine, or an error code

Process::setEnv()

Process setEnv(array $env) Sets the environment variables. An environment variable value should be a string. If it is an array, the variable is ignored. That happens in PHP when 'argv' is registered into the $_ENV array for instance. Parameters array $env The new environment variables Return Value Process The current Process instance