diff options
author | xjm | 2017-08-02 01:43:22 (GMT) |
---|---|---|
committer | xjm | 2017-08-02 01:43:22 (GMT) |
commit | d317372e6308c126d5335561e2e0a18b4de18174 (patch) | |
tree | 9b83da9a5bf6d93fcb80ad0ae2f90f514f29408a /core/lib/Drupal/Core/Render | |
parent | bbfe8a88113e8e968ba3bb74a9b18df2387c037d (diff) |
Issue #2899082 by tim.plunkett: ElementInfoManagerInterface must extend DiscoveryInterface
Diffstat (limited to 'core/lib/Drupal/Core/Render')
-rw-r--r-- | core/lib/Drupal/Core/Render/ElementInfoManagerInterface.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/lib/Drupal/Core/Render/ElementInfoManagerInterface.php b/core/lib/Drupal/Core/Render/ElementInfoManagerInterface.php index 884f212..99b7dac 100644 --- a/core/lib/Drupal/Core/Render/ElementInfoManagerInterface.php +++ b/core/lib/Drupal/Core/Render/ElementInfoManagerInterface.php @@ -2,10 +2,12 @@ namespace Drupal\Core\Render; +use Drupal\Component\Plugin\Discovery\DiscoveryInterface; + /** * Collects available render array element types. */ -interface ElementInfoManagerInterface { +interface ElementInfoManagerInterface extends DiscoveryInterface { /** * Retrieves the default properties for the defined element type. |