You are here

public function ConfigDataCollector::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/DataCollector/ConfigDataCollector.php \Symfony\Component\HttpKernel\DataCollector\ConfigDataCollector::__construct()

Constructor.

Parameters

string $name The name of the application using the web profiler:

string $version The version of the application using the web profiler:

File

vendor/symfony/http-kernel/DataCollector/ConfigDataCollector.php, line 40

Class

ConfigDataCollector
ConfigDataCollector.

Namespace

Symfony\Component\HttpKernel\DataCollector

Code

public function __construct($name = null, $version = null) {
  $this->name = $name;
  $this->version = $version;
}