Code Coverage
 
Lines
Branches
Paths
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3declare(strict_types=1);
4
5namespace Drupal\display_builder;
6
7/**
8 * Interface for island plugins providing third party settings.
9 */
10interface ThirdPartySettingsInterface {
11
12  /**
13   * Get settings summary renderable.
14   *
15   * @return array|null
16   *   The renderable summary including translations.
17   */
18  public function getSummary(): ?array;
19
20}