You are here

public function Parameter::__toString in Zircon Profile 8

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

__toString.

Return value

string The parameter key

File

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

Class

Parameter
Parameter represents a parameter reference.

Namespace

Symfony\Component\DependencyInjection

Code

public function __toString() {
  return (string) $this->id;
}