Security update for permissions_by_term
[yaffs-website] / vendor / drupal / drupal-extension / src / Drupal / DrupalExtension / Hook / Scope / BeforeTermCreateScope.php
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 BeforeTermCreateScope extends TermScope {
14
15   /**
16    * Return the scope name.
17    *
18    * @return string
19    */
20   public function getName() {
21     return self::BEFORE;
22   }
23
24 }