blob: 9248ac108052fce2ca0957a7eaa3078160ac8e8e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
namespace Drupal\Core\Block;
/**
* The interface for "messages" (#type => status_messages) blocks.
*
* @see \Drupal\Core\Messenger\MessengerInterface
* @see \Drupal\Core\Render\Element\StatusMessages
* @see \Drupal\block\Plugin\DisplayVariant\BlockPageVariant
*
* @ingroup block_api
*/
interface MessagesBlockPluginInterface extends BlockPluginInterface {}
|