Completed
Pull Request — 3.2 (#289)
by
unknown
10:16
created

BeforeLanguageCreateScope::getName()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 3
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
/**
4
 * @file
5
 * Contains \Drupal\DrupalExtension\Hook\Scope\BeforeLanguageCreateScope.
6
 */
7
namespace Drupal\DrupalExtension\Hook\Scope;
8
9
/**
10
 * Represents a language hook scope.
11
 */
12
final class BeforeLanguageCreateScope extends LanguageScope {
13
14
  /**
15
   * Returns the scope name.
16
   *
17
   * @return string
18
   */
19
  public function getName() {
20
    return self::BEFORE;
21
  }
22
23
}
24