Skip to content
This repository was archived by the owner on Feb 14, 2026. It is now read-only.

Commit 3b528e9

Browse files
committed
Use the getter method instead
1 parent 4f9e6a5 commit 3b528e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Concerns/Commands/HasGenerationSummary.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ trait HasGenerationSummary
99
{
1010
protected function showGenerationSummary(): void
1111
{
12-
if (blank($this->generatedFiles)) {
12+
if (blank($this->getGeneratedFiles())) {
1313
warning('No test files were generated.');
1414

1515
return;
1616
}
1717

18-
$rows = collect($this->generatedFiles)
18+
$rows = collect($this->getGeneratedFiles())
1919
->flatMap(fn ($resources, $panelName) => collect($resources)
2020
->map(fn ($data, $resource): array => [
2121
$resource,

0 commit comments

Comments
 (0)