コード例 #1
0
 /**
  * {@inheritdoc}
  */
 public function getFlow($flowId)
 {
     if (!isset($this->flows[$flowId])) {
         $this->flows[$flowId] = $this->builder->build($flowId);
     }
     return $this->flows[$flowId];
 }
コード例 #2
0
 /**
  * @test
  */
 public function createsFlowFromDefinition()
 {
     $flowId = 'test-flow';
     $moves = array('step_1' => array('step_2'), 'step_2' => array('step_3'), 'step_3' => array('step_4'));
     $entryPoints = array('step_1', 'step_2');
     $expected = new Flow($flowId, $moves, $entryPoints);
     $builder = new FlowBuilder();
     $definitions = array($flowId => array('moves' => $moves, 'entry_points' => $entryPoints));
     $builder->setDefinitions($definitions);
     $this->assertEquals($expected, $builder->build($flowId));
 }