forked from nanch/phpfmt_stable
-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Description
Description:
formatter is moving type hints in classes
Failing code:
class Record implements JsonSerializable
{
public $filename;
public (float) $number;
public $recorder;
}
Expected result:
class Record implements JsonSerializable
{
public $filename;
public (float) $number;
public $recorder;
}
Actual result:
class Record implements JsonSerializable {
public $filename;
(float) public $number;
public $recorder;
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels