Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/dependency-injection/Alias.php @ 17:129ea1e6d783
Update, including to Drupal core 8.6.10
author | Chris Cannam |
---|---|
date | Thu, 28 Feb 2019 13:21:36 +0000 |
parents | 1fec387a4317 |
children |
comparison
equal
deleted
inserted
replaced
16:c2387f117808 | 17:129ea1e6d783 |
---|---|
23 */ | 23 */ |
24 public function __construct($id, $public = true) | 24 public function __construct($id, $public = true) |
25 { | 25 { |
26 $this->id = (string) $id; | 26 $this->id = (string) $id; |
27 $this->public = $public; | 27 $this->public = $public; |
28 $this->private = 2 > func_num_args(); | 28 $this->private = 2 > \func_num_args(); |
29 } | 29 } |
30 | 30 |
31 /** | 31 /** |
32 * Checks if this DI Alias should be public or not. | 32 * Checks if this DI Alias should be public or not. |
33 * | 33 * |