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
3namespace Drupal\visitors;
4
5use Drupal\Component\Render\MarkupInterface;
6
7/**
8 * Visitors Language Interface.
9 */
10interface VisitorsLanguageInterface {
11
12  /**
13   * Get the language label.
14   *
15   * @param string $language_code
16   *   The language code.
17   */
18  public function getLanguageLabel($language_code): MarkupInterface;
19
20}