I've noticed some strange errors when collapsing comments and regions.
<?php
class foo
{
//region foo
public static int $a;
//region bar
public static int $b1;
public static int $b2;
public static int $b3;
//endregion bar
public static int $c;
//endregion foo
}
class bar
{
//foo
//region bar
//baz
public static string $x;
//endregion bar
// With DocBlocks
/**
* Summary of y
* @var string
*/
public static string $y;
/**
* Summary of z
* @var string
*/
public static string $z;
}
Expected behavior (works when PHP Tools is disabled)

Error (when PHP Tools is enabled)
