| Total Complexity | 3 |
| Total Lines | 30 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | class DownloadTextureController extends BaseController |
||
| 16 | { |
||
| 17 | public function __construct( |
||
| 18 | protected UuidResolver $uuidResolver, |
||
| 19 | protected ResponseFactory $responseFactory |
||
| 20 | ) { |
||
| 21 | } |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Download user texture. |
||
| 25 | * |
||
| 26 | * @param string $uuid User UUID or Username |
||
| 27 | * |
||
| 28 | * @throws \Minepic\Image\Exceptions\ImageCreateFromPngFailedException |
||
| 29 | */ |
||
| 30 | public function serve(string $uuid = ''): Response |
||
| 45 | } |
||
| 46 | } |
||
| 47 |