Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function serveUuid(Request $request, string $uuid, $size = 0): Response |
||
19 | { |
||
20 | $size = (int) $size; |
||
21 | $this->uuidResolver->resolve($uuid); |
||
22 | $this->dispatchAccountImageServedEvent(); |
||
23 | |||
24 | return $this->pngResponse( |
||
25 | (string) $this->rendering->skinFront($this->uuidResolver->getUuid(), $size) |
||
26 | ); |
||
46 |