You are here

public function Parameter::__construct in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/dependency-injection/Parameter.php \Symfony\Component\DependencyInjection\Parameter::__construct()

Constructor.

Parameters

string $id The parameter key:

File

vendor/symfony/dependency-injection/Parameter.php, line 28

Class

Parameter
Parameter represents a parameter reference.

Namespace

Symfony\Component\DependencyInjection

Code

public function __construct($id) {
  $this->id = $id;
}