Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / web / core / lib / Drupal / Core / Render / RenderableInterface.php
1 <?php
2
3 namespace Drupal\Core\Render;
4
5 /**
6  * Defines an object which can be rendered by the Render API.
7  */
8 interface RenderableInterface {
9
10   /**
11    * Returns a render array representation of the object.
12    *
13    * @return mixed[]
14    *   A render array.
15    */
16   public function toRenderable();
17
18 }