WorkFlowEvents.php 210 B

123456789101112131415161718
  1. <?php
  2. namespace WorkflowBundle\Utils;
  3. class WorkFlowEvents
  4. {
  5. use ChoiceTrait;
  6. const TRANSITION = 'transition';
  7. const LEAVE = 'leave';
  8. const ENTER = 'enter';
  9. const GUARD = 'guard';
  10. }