1 | <?php |
||
18 | class ResponseFactory implements ResponseFactoryInterface |
||
19 | { |
||
20 | /** |
||
21 | * Create response. |
||
22 | * |
||
23 | * @param FilesystemInterface $cache |
||
24 | * @param string $path |
||
25 | * |
||
26 | * @return Response |
||
27 | * |
||
28 | * @throws \League\Flysystem\FileNotFoundException |
||
29 | */ |
||
30 | public function create(FilesystemInterface $cache, $path) |
||
44 | } |
||
45 |