Skip to content

Commit

Permalink
Open port names definition to [a-zA-Z_]
Browse files Browse the repository at this point in the history
  • Loading branch information
Marc Aschmann committed Oct 29, 2016
1 parent f03357b commit 3611076
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/PhpFlo/Common/FbpDefinitionsInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
interface FbpDefinitionsInterface
{
const SOURCE_TARGET_SEPARATOR = '->';
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]+)\])?))?';
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]+)\])?))?';
const NEWLINES = '$\R?^';
const FILE_LINEFEED = "\n";
const TARGET_LABEL = 'tgt';
Expand Down

0 comments on commit 3611076

Please sign in to comment.