|
34 | 34 | *
|
35 | 35 | * @see https://xdebug.org/docs/code_coverage#xdebug_get_code_coverage
|
36 | 36 | *
|
37 |
| - * @phpstan-type XdebugLinesCoverageType = array<int, int> |
38 |
| - * @phpstan-type XdebugBranchCoverageType = array{ |
| 37 | + * @phpstan-type XdebugLinesCoverageType array<int, int> |
| 38 | + * @phpstan-type XdebugBranchCoverageType array{ |
39 | 39 | * op_start: int,
|
40 | 40 | * op_end: int,
|
41 | 41 | * line_start: int,
|
|
44 | 44 | * out: array<int, int>,
|
45 | 45 | * out_hit: array<int, int>,
|
46 | 46 | * }
|
47 |
| - * @phpstan-type XdebugPathCoverageType = array{ |
| 47 | + * @phpstan-type XdebugPathCoverageType array{ |
48 | 48 | * path: array<int, int>,
|
49 | 49 | * hit: int,
|
50 | 50 | * }
|
51 |
| - * @phpstan-type XdebugFunctionCoverageType = array{ |
| 51 | + * @phpstan-type XdebugFunctionCoverageType array{ |
52 | 52 | * branches: array<int, XdebugBranchCoverageType>,
|
53 | 53 | * paths: array<int, XdebugPathCoverageType>,
|
54 | 54 | * }
|
55 |
| - * @phpstan-type XdebugFunctionsCoverageType = array<string, XdebugFunctionCoverageType> |
56 |
| - * @phpstan-type XdebugPathAndBranchesCoverageType = array{ |
| 55 | + * @phpstan-type XdebugFunctionsCoverageType array<string, XdebugFunctionCoverageType> |
| 56 | + * @phpstan-type XdebugPathAndBranchesCoverageType array{ |
57 | 57 | * lines: XdebugLinesCoverageType,
|
58 | 58 | * functions: XdebugFunctionsCoverageType,
|
59 | 59 | * }
|
60 |
| - * @phpstan-type XdebugCodeCoverageWithoutPathCoverageType = array<string, XdebugLinesCoverageType> |
61 |
| - * @phpstan-type XdebugCodeCoverageWithPathCoverageType = array<string, XdebugPathAndBranchesCoverageType> |
| 60 | + * @phpstan-type XdebugCodeCoverageWithoutPathCoverageType array<string, XdebugLinesCoverageType> |
| 61 | + * @phpstan-type XdebugCodeCoverageWithPathCoverageType array<string, XdebugPathAndBranchesCoverageType> |
62 | 62 | */
|
63 | 63 | final class XdebugDriver extends Driver
|
64 | 64 | {
|
|
0 commit comments