for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @file
* Entity scope.
*/
namespace Drupal\DrupalExtension\Hook\Scope;
use Behat\Testwork\Hook\Scope\HookScope;
* Represents an Entity hook scope.
final class AfterTermCreateScope extends TermScope {
* Return the scope name.
*
* @return string
public function getName() {
return self::AFTER;
}