Form::getValues()

array getValues() Gets the field values. The returned array does not include file fields (see getFiles). Return Value array An array of field values

Section::startEvent()

StopwatchEvent startEvent(string $name, string $category) Starts an event. Parameters string $name The event name string $category The event category Return Value StopwatchEvent The event

ArgumentMetadata::getDefaultValue()

mixed getDefaultValue() Returns the default value of the argument. Return Value mixed Exceptions LogicException if no default value is present; {see self::hasDefaultValue()}

ControllerResolverInterface

interface ControllerResolverInterface A ControllerResolverInterface implementation knows how to determine the controller to execute based on a Request object. It can also determine the arguments to pass to the Controller. A Controller can be any valid PHP callable. Methods callable|false getController(Request $request) Returns the Controller instance associated with a Request. array getArguments(Request $request, callable $controller) deprecated Returns the arguments to pass to the

Token::isString()

bool isString() Return Value bool

CodeHelper::formatFileFromText()

formatFileFromText($text) Parameters $text

PropertyPathBuilder::append()

append(PropertyPathInterface|string $path, int $offset, int $length) Appends a (sub-) path to the current path. Parameters PropertyPathInterface|string $path The path to append int $offset The offset where the appended piece starts in $path. int $length The length of the appended piece If 0, the full path is appended.

Client::disableReboot()

disableReboot() Disables kernel reboot between requests. By default, the Client reboots the Kernel for each request. This method allows to keep the same kernel across requests.

Input::bind()

bind(InputDefinition $definition) Binds the current Input instance with the given arguments and options. Parameters InputDefinition $definition A InputDefinition instance

ProgressBar::advance()

advance(int $step = 1) Advances the progress output X steps. Parameters int $step Number of steps to advance Exceptions LogicException