public function ConfigDataCollector::__construct in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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\DataCollectorCode
public function __construct($name = null, $version = null) {
$this->name = $name;
$this->version = $version;
}