You are here

public function Variable::__toString in Zircon Profile 8

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

Converts the object to a string.

Return value

string

File

vendor/symfony/dependency-injection/Variable.php, line 46

Class

Variable
Represents a variable.

Namespace

Symfony\Component\DependencyInjection

Code

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