Mercurial > hg > isophonics-drupal-site
comparison vendor/symfony/dependency-injection/Dumper/Dumper.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 |
---|---|
20 */ | 20 */ |
21 abstract class Dumper implements DumperInterface | 21 abstract class Dumper implements DumperInterface |
22 { | 22 { |
23 protected $container; | 23 protected $container; |
24 | 24 |
25 /** | |
26 * @param ContainerBuilder $container The service container to dump | |
27 */ | |
28 public function __construct(ContainerBuilder $container) | 25 public function __construct(ContainerBuilder $container) |
29 { | 26 { |
30 $this->container = $container; | 27 $this->container = $container; |
31 } | 28 } |
32 } | 29 } |