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 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Drupal\name\Entity; |
| 6 | |
| 7 | use Drupal\Core\Config\Entity\ConfigEntityInterface; |
| 8 | |
| 9 | /** |
| 10 | * Provides an interface defining a name format. |
| 11 | */ |
| 12 | interface NameFormatInterface 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 | } |