You are here

public function FileBag::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-foundation/FileBag.php \Symfony\Component\HttpFoundation\FileBag::__construct()

Constructor.

Parameters

array $parameters An array of HTTP files:

Overrides ParameterBag::__construct

File

vendor/symfony/http-foundation/FileBag.php, line 31

Class

FileBag
FileBag is a container for uploaded files.

Namespace

Symfony\Component\HttpFoundation

Code

public function __construct(array $parameters = array()) {
  $this
    ->replace($parameters);
}