*/ class StateMachine extends Workflow { public function __construct(Definition $definition, MarkingStoreInterface $markingStore = null, EventDispatcherInterface $dispatcher = null, $name = 'unnamed') { parent::__construct($definition, $markingStore ?: new SingleStateMarkingStore(), $dispatcher, $name); } }