Skip to content

Commit 8ef9a93

Browse files
committed
style(cs): remove blank lines between properties (cs:fix followup)
cs:fix removed blank lines between typed properties in production classes after the class_attributes_separation rule changed to 'property' => 'none'. These files were fixed locally but not committed in the previous push. Affected: - src/Core/ProjectContext.php: $devkitDir / $buildDir - src/ValueObject/MigrationReport.php: $hasRedundancies / $totalItems - src/ValueObject/QualityReport.php: $passed / $totalSeconds / $failureCount
1 parent 78e1cf9 commit 8ef9a93

3 files changed

Lines changed: 0 additions & 4 deletions

File tree

src/Core/ProjectContext.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
final readonly class ProjectContext
1616
{
1717
public string $devkitDir;
18-
1918
public string $buildDir;
2019

2120
/**

src/ValueObject/MigrationReport.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
final readonly class MigrationReport
1414
{
1515
public bool $hasRedundancies;
16-
1716
public int $totalItems;
1817

1918
/**

src/ValueObject/QualityReport.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@
1212
final readonly class QualityReport
1313
{
1414
public bool $passed;
15-
1615
public float $totalSeconds;
17-
1816
public int $failureCount;
1917

2018
/** @param list<ToolResult> $results */

0 commit comments

Comments
 (0)