Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/dependency-injection/Compiler/RepeatedPass.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 |
---|---|
24 /** | 24 /** |
25 * @var bool | 25 * @var bool |
26 */ | 26 */ |
27 private $repeat = false; | 27 private $repeat = false; |
28 | 28 |
29 /** | |
30 * @var RepeatablePassInterface[] | |
31 */ | |
32 private $passes; | 29 private $passes; |
33 | 30 |
34 /** | 31 /** |
35 * @param RepeatablePassInterface[] $passes An array of RepeatablePassInterface objects | 32 * @param RepeatablePassInterface[] $passes An array of RepeatablePassInterface objects |
36 * | 33 * |
49 $this->passes = $passes; | 46 $this->passes = $passes; |
50 } | 47 } |
51 | 48 |
52 /** | 49 /** |
53 * Process the repeatable passes that run more than once. | 50 * Process the repeatable passes that run more than once. |
54 * | |
55 * @param ContainerBuilder $container | |
56 */ | 51 */ |
57 public function process(ContainerBuilder $container) | 52 public function process(ContainerBuilder $container) |
58 { | 53 { |
59 do { | 54 do { |
60 $this->repeat = false; | 55 $this->repeat = false; |