Completed
Pull Request — 3.1 (#287)
by
unknown
12:38 queued 09:57
created

AfterLanguageCreateScope::getName()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

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