"place0-->|\"t1\"|place1\n"
."place3-->|\"My custom transition label 3\"|place1\n"
."linkStyle 1 stroke:Grey\n"
."place1-->|\"t2\"|place2\n"
."place1-->|\"t3\"|place3",
];
} public static function provideWorkflowWithMarking(): iterable
{ $marking =
new Marking();
$marking->
mark('b'
);
$marking->
mark('c'
);
yield [ self::
createSimpleWorkflowDefinition(),
$marking,
"graph LR\n"
."place0([\"a\"])\n"
."place1((\"b\"))\n"
."style place1 stroke-width:4px\n"
."place2((\"c\"))\n"
."style place2 fill:DeepSkyBlue,stroke-width:4px\n"
.