From dcf11df193453b0c09febc9f2c2509edca5c8536 Mon Sep 17 00:00:00 2001 From: Darshan Date: Thu, 1 May 2025 12:16:07 +0530 Subject: [PATCH] remove: method and expose the variable itself. --- src/Appwrite/Platform/Workers/Migrations.php | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/src/Appwrite/Platform/Workers/Migrations.php b/src/Appwrite/Platform/Workers/Migrations.php index f2d7293c66..d342875369 100644 --- a/src/Appwrite/Platform/Workers/Migrations.php +++ b/src/Appwrite/Platform/Workers/Migrations.php @@ -39,7 +39,7 @@ class Migrations extends Action * * @var array */ - 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 Resource type mapped to their counts. - */ - protected function getSourceReport(): array - { - return $this->sourceReport; - } }