Security update for permissions_by_term
[yaffs-website] / vendor / drupal / drupal-extension / src / Drupal / DrupalExtension / Hook / Scope / BeforeLanguageCreateScope.php
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 }