. */ namespace FireflyIII\Services\FireflyIIIOrg\Update; use FireflyIII\Exceptions\FireflyException; /** * Interface UpdateRequestInterface */ interface UpdateRequestInterface { /** * @param string $channel * * @return array * @throws FireflyException */ public function getVersion(string $channel): array; }