ResponseFactoryInterface
last analyzed

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
create() 0 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