Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / web / core / lib / Drupal / Core / Render / Element / Html.php
1 <?php
2
3 namespace Drupal\Core\Render\Element;
4
5 /**
6  * Provides a render element for an entire HTML page: <html> plus its children.
7  *
8  * @RenderElement("html")
9  */
10 class Html extends RenderElement {
11
12   /**
13    * {@inheritdoc}
14    */
15   public function getInfo() {
16     return [
17       '#theme' => 'html',
18       // HTML5 Shiv
19       '#attached' => [
20         'library' => ['core/html5shiv'],
21       ],
22     ];
23   }
24
25 }