?? GreyFile — Mystic File Browser

Current path: home/webdevt/prestashop17/modules/ps_metrics/vendor/prestashop/module-lib-guzzle-adapter/src/



?? Go up: /home/webdevt/prestashop17/modules/ps_metrics/vendor/prestashop/module-lib-guzzle-adapter

?? Viewing: VersionDetection.php

<?php

namespace Prestashop\ModuleLibGuzzleAdapter;

class VersionDetection
{
    /**
     * @return int|null
     */
    public function getGuzzleMajorVersionNumber()
    {
        // Guzzle 7 and above
        if (defined('\GuzzleHttp\ClientInterface::MAJOR_VERSION')) {
            // @phpstan-ignore-next-line
            return (int) \GuzzleHttp\ClientInterface::MAJOR_VERSION;
        }

        // Before Guzzle 7
        if (defined('\GuzzleHttp\ClientInterface::VERSION')) {
            // @phpstan-ignore-next-line
            return (int) \GuzzleHttp\ClientInterface::VERSION[0];
        }

        return null;
    }
}


??

??