Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3declare(strict_types=1);
4
5namespace Drupal\visitors;
6
7/**
8 * Visitors Page Attachments Interface.
9 */
10interface VisitorsPageAttachmentsInterface {
11
12  /**
13   * Add page attachments.
14   *
15   * @param array $page
16   *   The page attachments array.
17   */
18  public function pageAttachments(array &$page);
19
20}