Skip to content

Commit

Permalink
Remove semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
ssigwart authored Jul 6, 2019
1 parent 2e5f974 commit e541400
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/udl/skel/PHP/pylib/lang_php.py
Original file line number Diff line number Diff line change
Expand Up @@ -1467,7 +1467,7 @@ def _getFQNForType(varType, fileinfo, namespace):
if varType.startswith("(") and varType.endswith(")"):
return _getFQNForTypePiece(varType[1:-1], fileinfo, namespace)
# Handle int|null
varTypes = varType.split("|");
varTypes = varType.split("|")
rtn = ""
for varTypePiece in varTypes:
if rtn != "":
Expand All @@ -1492,7 +1492,7 @@ def _getFQNForTypePiece(varType, fileinfo, namespace):
varType = use_import.name + "\\" + use_import.symbol
if varType[0] != "\\":
varType = "\\" + varType
break;
break
else:
# Add namespace if not found
if namespace:
Expand Down

0 comments on commit e541400

Please sign in to comment.