Skip to content

Commit 7c12c19

Browse files
Sander van der Vlugtsvandervlugt
authored andcommitted
codestyle
1 parent d89c37b commit 7c12c19

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

src/Reflection/ReflectionClass.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,10 @@ public function getProperties(): array
311311
// would not be parsed.
312312
//
313313
// Skip T_STRING and "?" because if it exists, it must be a type declaration.
314-
$var_loc = $tokens->next($vis_loc, [T_COMMENT, T_WHITESPACE, T_STATIC, T_FINAL, T_STRING, '?', T_NAME_FULLY_QUALIFIED]);
314+
$var_loc = $tokens->next(
315+
$vis_loc,
316+
[T_COMMENT, T_WHITESPACE, T_STATIC, T_FINAL, T_STRING, '?', T_NAME_FULLY_QUALIFIED]
317+
);
315318
if ($tokens->type($var_loc) !== T_VARIABLE) {
316319
continue;
317320
}

0 commit comments

Comments
 (0)