File "ResponseFactoryInterface.php"

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

<?php

namespace League\Glide\Responses;

use League\Flysystem\FilesystemOperator;

interface ResponseFactoryInterface
{
    /**
     * Create response.
     *
     * @param FilesystemOperator $cache Cache file system.
     * @param string             $path  Cached file path.
     *
     * @return mixed The response object.
     */
    public function create(FilesystemOperator $cache, $path);
}