comparison vendor/symfony/routing/Generator/Dumper/GeneratorDumper.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
18 * 18 *
19 * @author Fabien Potencier <fabien@symfony.com> 19 * @author Fabien Potencier <fabien@symfony.com>
20 */ 20 */
21 abstract class GeneratorDumper implements GeneratorDumperInterface 21 abstract class GeneratorDumper implements GeneratorDumperInterface
22 { 22 {
23 /**
24 * @var RouteCollection
25 */
26 private $routes; 23 private $routes;
27 24
28 /**
29 * Constructor.
30 *
31 * @param RouteCollection $routes The RouteCollection to dump
32 */
33 public function __construct(RouteCollection $routes) 25 public function __construct(RouteCollection $routes)
34 { 26 {
35 $this->routes = $routes; 27 $this->routes = $routes;
36 } 28 }
37 29