Security update for permissions_by_term
[yaffs-website] / vendor / drupal / drupal-extension / src / Drupal / DrupalExtension / Hook / Scope / BeforeUserCreateScope.php
diff --git a/vendor/drupal/drupal-extension/src/Drupal/DrupalExtension/Hook/Scope/BeforeUserCreateScope.php b/vendor/drupal/drupal-extension/src/Drupal/DrupalExtension/Hook/Scope/BeforeUserCreateScope.php
new file mode 100644 (file)
index 0000000..c5b30a4
--- /dev/null
@@ -0,0 +1,24 @@
+<?php
+/**
+ * @file
+ * Entity scope.
+ */
+namespace Drupal\DrupalExtension\Hook\Scope;
+
+use Behat\Testwork\Hook\Scope\HookScope;
+
+/**
+ * Represents an Entity hook scope.
+ */
+final class BeforeUserCreateScope extends UserScope {
+
+  /**
+   * Return the scope name.
+   *
+   * @return string
+   */
+  public function getName() {
+    return self::BEFORE;
+  }
+
+}