File "SignatureFactory.php"

Full Path: /home/clickysoft/public_html/jmapi5.clickysoft.net/vendor/league/glide/src/Signatures/SignatureFactory.php
File size: 356 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace League\Glide\Signatures;

class SignatureFactory
{
    /**
     * Create HttpSignature instance.
     *
     * @param string $signKey Secret key used to generate signature.
     *
     * @return Signature The HttpSignature instance.
     */
    public static function create($signKey)
    {
        return new Signature($signKey);
    }
}