Security update for permissions_by_term
[yaffs-website] / vendor / drupal / drupal-extension / src / Drupal / DrupalExtension / Hook / Scope / TermScope
diff --git a/vendor/drupal/drupal-extension/src/Drupal/DrupalExtension/Hook/Scope/TermScope b/vendor/drupal/drupal-extension/src/Drupal/DrupalExtension/Hook/Scope/TermScope
new file mode 100644 (file)
index 0000000..5e8b93b
--- /dev/null
@@ -0,0 +1,19 @@
+<?php
+/**
+ * @file
+ * User scope.
+ */
+namespace Drupal\DrupalExtension\Hook\Scope;
+
+use Behat\Behat\Context\Context;
+use Behat\Testwork\Hook\Scope\HookScope;
+
+/**
+ * Represents an Entity hook scope.
+ */
+abstract class UserScope extends BaseEntityScope {
+
+  const BEFORE = 'user.create.before';
+  const AFTER = 'user.create.after';
+
+}