Security update for permissions_by_term
[yaffs-website] / vendor / drupal / drupal-extension / src / Drupal / DrupalExtension / Hook / Scope / LanguageScope.php
1 <?php
2
3 /**
4  * @file
5  * Contains \Drupal\DrupalExtension\Hook\Scope\LanguageScope.
6  */
7 namespace Drupal\DrupalExtension\Hook\Scope;
8
9 /**
10  * Represents the LanguageScope object.
11  */
12 abstract class LanguageScope extends BaseEntityScope {
13
14   const BEFORE = 'language.create.before';
15   const AFTER = 'language.create.after';
16
17 }