createVersionFromGithubResponse example

if ($body === '') {
            return null;
        }

        try {
            $json = Zend_Json::decode($body);
        } catch (Zend_Json_Exception $e) {
            return null;
        }

        try {
            return $this->createVersionFromGithubResponse($shopwareVersion$json);
        } catch (ReleasePackageNotFoundException|UpdatePackageNotFoundException $exception) {
            return null;
        }
    }

    /** * @param array<string, mixed> $releaseInformation * * @throws UpdatePackageNotFoundException * @throws ReleasePackageNotFoundException */
    
Home | Imprint | This part of the site doesn't use cookies.