Pull merge.
[yaffs-website] / web / core / modules / layout_builder / src / OverridesSectionStorageInterface.php
1 <?php
2
3 namespace Drupal\layout_builder;
4
5 /**
6  * Defines an interface for an object that stores layout sections for overrides.
7  *
8  * @internal
9  *   Layout Builder is currently experimental and should only be leveraged by
10  *   experimental modules and development releases of contributed modules.
11  *   See https://www.drupal.org/core/experimental for more information.
12  */
13 interface OverridesSectionStorageInterface extends SectionStorageInterface {
14
15   /**
16    * Returns the corresponding defaults section storage for this override.
17    *
18    * @return \Drupal\layout_builder\DefaultsSectionStorageInterface
19    *   The defaults section storage.
20    *
21    * @todo Determine if this method needs a parameter in
22    *   https://www.drupal.org/project/drupal/issues/2936507.
23    */
24   public function getDefaultSectionStorage();
25
26 }