This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/Workflow/Tests/WorkflowBuilderTrait.php

80 lines
3.1 KiB
PHP
Raw Normal View History

2016-11-17 10:10:08 +00:00
<?php
namespace Symfony\Component\Workflow\Tests;
use Symfony\Component\Workflow\Definition;
use Symfony\Component\Workflow\Transition;
trait WorkflowBuilderTrait
{
private function createComplexWorkflowDefinition()
2016-11-17 10:10:08 +00:00
{
$places = range('a', 'g');
$transitions = array();
$transitions[] = new Transition('t1', 'a', array('b', 'c'));
$transitions[] = new Transition('t2', array('b', 'c'), 'd');
$transitions[] = new Transition('t3', 'd', 'e');
$transitions[] = new Transition('t4', 'd', 'f');
$transitions[] = new Transition('t5', 'e', 'g');
$transitions[] = new Transition('t6', 'f', 'g');
return new Definition($places, $transitions);
// The graph looks like:
// +---+ +----+ +---+ +----+ +----+ +----+ +----+ +----+ +---+
// | a | --> | t1 | --> | c | --> | t2 | --> | d | --> | t4 | --> | f | --> | t6 | --> | g |
// +---+ +----+ +---+ +----+ +----+ +----+ +----+ +----+ +---+
// | ^ | ^
// | | | |
// v | v |
// +----+ | +----+ +----+ +----+ |
// | b | ----------------+ | t3 | --> | e | --> | t5 | -----------------+
// +----+ +----+ +----+ +----+
}
private function createSimpleWorkflowDefinition()
2016-11-17 10:10:08 +00:00
{
$places = range('a', 'c');
$transitions = array();
$transitions[] = new Transition('t1', 'a', 'b');
$transitions[] = new Transition('t2', 'b', 'c');
return new Definition($places, $transitions);
// The graph looks like:
// +---+ +----+ +---+ +----+ +---+
// | a | --> | t1 | --> | b | --> | t2 | --> | c |
// +---+ +----+ +---+ +----+ +---+
}
private function createComplexStateMachineDefinition()
{
$places = array('a', 'b', 'c', 'd');
$transitions[] = new Transition('t1', 'a', 'b');
$transitions[] = new Transition('t1', 'd', 'b');
$transitions[] = new Transition('t2', 'b', 'c');
$transitions[] = new Transition('t3', 'b', 'd');
$definition = new Definition($places, $transitions);
return $definition;
// The graph looks like:
// t1
// +------------------+
// v |
// +---+ t1 +-----+ t2 +---+ |
// | a | ----> | b | ----> | c | |
// +---+ +-----+ +---+ |
// | |
// | t3 |
// v |
// +-----+ |
// | d | -------------+
// +-----+
2016-11-17 10:10:08 +00:00
}
}