remove: method and expose the variable itself.

This commit is contained in:
Darshan 2025-05-01 12:16:07 +05:30
parent b922858428
commit dcf11df193

View file

@ -39,7 +39,7 @@ class Migrations extends Action
*
* @var array<string, int>
*/
private array $sourceReport = [];
protected array $sourceReport = [];
/**
* @var callable
@ -390,16 +390,4 @@ class Migrations extends Action
}
}
}
/**
* Returns a report of resources in the source.
*
* Should be called after `processSource()` to ensure the data is populated.
*
* @return array<string, int> Resource type mapped to their counts.
*/
protected function getSourceReport(): array
{
return $this->sourceReport;
}
}