Skip to content

Commit

Permalink
Fix CS
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Aug 17, 2020
1 parent 9ac517c commit 072ad98
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Inline.php
Original file line number Diff line number Diff line change
Expand Up @@ -631,6 +631,7 @@ private static function evaluateScalar(string $scalar, int $flags, array $refere
default:
throw new ParseException(sprintf('The string "%s" could not be parsed as it uses an unsupported built-in tag.', $scalar), self::$parsedLineNumber, $scalar, self::$parsedFilename);
}
// no break
case preg_match('/^(?:\+|-)?0o(?P<value>[0-7_]++)$/', $scalar, $matches):
$value = str_replace('_', '', $matches['value']);

Expand Down

0 comments on commit 072ad98

Please sign in to comment.