?? GreyFile — Mystic File Browser

Current path: home/webdevt/www/schtroumpf.fr/modules/ps_checkout/vendor/prestashop/module-lib-guzzle-adapter/src/



?? Go up: /home/webdevt/www/schtroumpf.fr/modules/ps_checkout/vendor/prestashop/module-lib-guzzle-adapter

?? Viewing: VersionDetection.php

<?php

declare(strict_types=1);

namespace Prestashop\ModuleLibGuzzleAdapter;

class VersionDetection
{
    public function getGuzzleMajorVersionNumber(): ?int
    {
        // 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;
    }
}


??

??