ResponseFactoryInterface::create()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 1
1
<?php
2
3
namespace League\Glide\Responses;
4
5
use League\Flysystem\FilesystemInterface;
6
7
interface ResponseFactoryInterface
8
{
9
    /**
10
     * Create response.
11
     * @param  FilesystemInterface $cache Cache file system.
12
     * @param  string              $path  Cached file path.
13
     * @return mixed               The response object.
14
     */
15
    public function create(FilesystemInterface $cache, $path);
16
}
17