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

AfterTermCreateScope::getName()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

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