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