Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Drupal\name\Service; |
| 6 | |
| 7 | /** |
| 8 | * Cached widget layouts from hook_name_widget_layouts(). |
| 9 | * |
| 10 | * @internal |
| 11 | */ |
| 12 | interface WidgetLayoutInterface { |
| 13 | |
| 14 | /** |
| 15 | * Returns keyed widget layout definitions. |
| 16 | */ |
| 17 | public function getLayouts(): array; |
| 18 | |
| 19 | } |