Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/dependency-injection/Variable.php @ 14:1fec387a4317
Update Drupal core to 8.5.2 via Composer
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:46:53 +0100 |
parents | 4c8ae668cc8c |
children |
comparison
equal
deleted
inserted
replaced
13:5fb285c0d0e3 | 14:1fec387a4317 |
---|---|
34 public function __construct($name) | 34 public function __construct($name) |
35 { | 35 { |
36 $this->name = $name; | 36 $this->name = $name; |
37 } | 37 } |
38 | 38 |
39 /** | |
40 * Converts the object to a string. | |
41 * | |
42 * @return string | |
43 */ | |
44 public function __toString() | 39 public function __toString() |
45 { | 40 { |
46 return $this->name; | 41 return $this->name; |
47 } | 42 } |
48 } | 43 } |