Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / web / core / lib / Drupal / Core / Render / Element / Page.php
1 <?php
2
3 namespace Drupal\Core\Render\Element;
4
5 /**
6  * Provides a render element for the content of an HTML page.
7  *
8  * This represents the "main part" of the HTML page's body; see html.html.twig.
9  *
10  * @RenderElement("page")
11  */
12 class Page extends RenderElement {
13
14   /**
15    * {@inheritdoc}
16    */
17   public function getInfo() {
18     return [
19       '#theme' => 'page',
20       '#title' => '',
21     ];
22   }
23
24 }