Skip to content

Commit b5c3f31

Browse files
committed
Run fixers
1 parent 9f277f1 commit b5c3f31

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/DotNotationParser.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ private function scanQuotedString( \Iterator $chars ) : string {
8383

8484
$chars->next();
8585
$lastKey = $chars->key();
86-
for( ; ; ) {
86+
for(;;) {
8787
$token = $chars->current();
8888
$key = $chars->key();
8989

src/Exceptions/ParseException.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ class ParseException extends \InvalidArgumentException {
77
public const CODE_UNEXPECTED_CHARACTER = 22;
88
public const CODE_UNEXPECTED_EOF = 484;
99

10-
/**
11-
* @var int The index of the character that caused the exception
12-
*/
10+
/** @var int The index of the character that caused the exception */
1311
private $charIndex;
1412

1513
public function __construct( string $message, int $charIndex, int $code, ?\Throwable $previous = null ) {

0 commit comments

Comments
 (0)