annotate core/modules/layout_builder/src/OverridesSectionStorageInterface.php @ 16:c2387f117808

Routine composer update
author Chris Cannam
date Tue, 10 Jul 2018 15:07:59 +0100
parents 1fec387a4317
children af1871eacc83
rev   line source
Chris@14 1 <?php
Chris@14 2
Chris@14 3 namespace Drupal\layout_builder;
Chris@14 4
Chris@14 5 /**
Chris@14 6 * Defines an interface for an object that stores layout sections for overrides.
Chris@14 7 *
Chris@14 8 * @internal
Chris@14 9 * Layout Builder is currently experimental and should only be leveraged by
Chris@14 10 * experimental modules and development releases of contributed modules.
Chris@14 11 * See https://www.drupal.org/core/experimental for more information.
Chris@14 12 */
Chris@14 13 interface OverridesSectionStorageInterface extends SectionStorageInterface {
Chris@14 14
Chris@14 15 /**
Chris@14 16 * Returns the corresponding defaults section storage for this override.
Chris@14 17 *
Chris@16 18 * @return \Drupal\layout_builder\DefaultsSectionStorageInterface
Chris@14 19 * The defaults section storage.
Chris@14 20 *
Chris@14 21 * @todo Determine if this method needs a parameter in
Chris@14 22 * https://www.drupal.org/project/drupal/issues/2936507.
Chris@14 23 */
Chris@14 24 public function getDefaultSectionStorage();
Chris@14 25
Chris@14 26 }