Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drupal / drupal-extension / src / Drupal / DrupalExtension / Hook / Scope / NodeScope.php
diff --git a/vendor/drupal/drupal-extension/src/Drupal/DrupalExtension/Hook/Scope/NodeScope.php b/vendor/drupal/drupal-extension/src/Drupal/DrupalExtension/Hook/Scope/NodeScope.php
deleted file mode 100644 (file)
index a4ee625..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-<?php
-/**
- * @file
- * Node scope.
- */
-namespace Drupal\DrupalExtension\Hook\Scope;
-
-use Behat\Behat\Context\Context;
-use Behat\Testwork\Hook\Scope\HookScope;
-
-/**
- * Represents an Entity hook scope.
- */
-abstract class NodeScope extends BaseEntityScope {
-
-  const BEFORE = 'node.create.before';
-  const AFTER = 'node.create.after';
-
-}