. */ declare(strict_types=1); namespace FireflyIII\Services\FireflyIIIOrg\Update; use Carbon\Carbon; /** * Interface UpdateRequestInterface */ interface UpdateRequestInterface { public function getUpdateInformation(string $currentVersion, Carbon $currentBuild, string $channel): UpdateResponse; }