flow-1.0.0-beta8/src/FlowEvents.php
src/FlowEvents.php
<?php
namespace Drupal\flow;
/**
* Defines Flow-related events.
*/
final class FlowEvents {
/**
* Dispatched before configured flow begins to be applied.
*
* @Event
*
* @var string
*/
const BEGIN = 'flow.begin';
/**
* Dispatched after configured flow was applied.
*
* @Event
*
* @var string
*/
const END = 'flow.end';
}
