Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -428,3 +428,19 @@ class PHP84FinalProperties {

final private bool $finalPrivate;
}

class MultilineCommentShouldNotBeSplitUp {
// This is the first line
// of a multi-line comment
// which should be recognized as belonging
// with the property.
public $prop;


/* This is the first line
of a multi-line comment
which should be recognized as belonging
with the property.
*/
public $prop;
}
Original file line number Diff line number Diff line change
Expand Up @@ -415,3 +415,19 @@ class PHP84FinalProperties {

final private bool $finalPrivate;
}

class MultilineCommentShouldNotBeSplitUp {

// This is the first line
// of a multi-line comment
// which should be recognized as belonging
// with the property.
public $prop;

/* This is the first line
of a multi-line comment
which should be recognized as belonging
with the property.
*/
public $prop;
}
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ public function getErrorList($testFile='')
416 => 1,
420 => 1,
427 => 1,
437 => 1,
445 => 1,
];

default:
Expand Down