Security update for permissions_by_term
[yaffs-website] / vendor / drupal / drupal-extension / src / Drupal / DrupalExtension / Hook / Scope / TermScope
1 <?php
2 /**
3  * @file
4  * User scope.
5  */
6 namespace Drupal\DrupalExtension\Hook\Scope;
7
8 use Behat\Behat\Context\Context;
9 use Behat\Testwork\Hook\Scope\HookScope;
10
11 /**
12  * Represents an Entity hook scope.
13  */
14 abstract class UserScope extends BaseEntityScope {
15
16   const BEFORE = 'user.create.before';
17   const AFTER = 'user.create.after';
18
19 }