Skip to content

Commit 3611076

Browse files
author
Marc Aschmann
committed
Open port names definition to [a-zA-Z_]
1 parent f03357b commit 3611076

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/PhpFlo/Common/FbpDefinitionsInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
interface FbpDefinitionsInterface
2020
{
2121
const SOURCE_TARGET_SEPARATOR = '->';
22-
const PROCESS_DEFINITION = '((?P<inport>[A-Z]+(\[(?P<inport_no>[0-9]+)\])?)\s)?((?P<process>[\w\/]+)(\((?P<component>[\w\/\\\.]+)?\))?)(\s(?P<outport>[A-Z]+(\[(?P<outport_no>[0-9]+)\])?))?';
22+
const PROCESS_DEFINITION = '((?P<inport>[a-zA-Z_]+(\[(?P<inport_no>[0-9]+)\])?)\s)?((?P<process>[\w\/]+)(\((?P<component>[\w\/\\\.]+)?\))?)(\s(?P<outport>[a-zA-Z_]+(\[(?P<outport_no>[0-9]+)\])?))?';
2323
const NEWLINES = '$\R?^';
2424
const FILE_LINEFEED = "\n";
2525
const TARGET_LABEL = 'tgt';

0 commit comments

Comments
 (0)