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\name\Entity;
6
7use Drupal\Core\Config\Entity\ConfigEntityInterface;
8
9/**
10 * Provides an interface defining a name format.
11 */
12interface NameListFormatInterface extends ConfigEntityInterface {
13
14  /**
15   * Determines if this name format is locked.
16   *
17   * @return bool
18   *   TRUE if the name format is locked, FALSE otherwise.
19   */
20  public function isLocked();
21
22  /**
23   * Get the list settings.
24   *
25   * @return array
26   *   The settings with any custom processing completed.
27   */
28  public function listSettings();
29
30}