comparison vendor/symfony/http-kernel/Bundle/BundleInterface.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 34
35 /** 35 /**
36 * Builds the bundle. 36 * Builds the bundle.
37 * 37 *
38 * It is only ever called once when the cache is empty. 38 * It is only ever called once when the cache is empty.
39 *
40 * @param ContainerBuilder $container A ContainerBuilder instance
41 */ 39 */
42 public function build(ContainerBuilder $container); 40 public function build(ContainerBuilder $container);
43 41
44 /** 42 /**
45 * Returns the container extension that should be implicitly loaded. 43 * Returns the container extension that should be implicitly loaded.
54 * Despite its name, this method does not imply any parent/child relationship 52 * Despite its name, this method does not imply any parent/child relationship
55 * between the bundles, just a way to extend and override an existing 53 * between the bundles, just a way to extend and override an existing
56 * bundle. 54 * bundle.
57 * 55 *
58 * @return string The Bundle name it overrides or null if no parent 56 * @return string The Bundle name it overrides or null if no parent
57 *
58 * @deprecated This method is deprecated as of 3.4 and will be removed in 4.0.
59 */ 59 */
60 public function getParent(); 60 public function getParent();
61 61
62 /** 62 /**
63 * Returns the bundle name (the class short name). 63 * Returns the bundle name (the class short name).