Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function serveUuid(Request $request, string $uuid, $size = 0): Response |
||
24 | { |
||
25 | $this->uuidResolver->resolve($uuid); |
||
26 | $this->dispatchAccountImageServedEvent(); |
||
27 | |||
28 | return $this->pngResponse( |
||
29 | (string) $this->rendering->avatar( |
||
30 | $this->uuidResolver->getUuid(), |
||
31 | (int) $size |
||
32 | ) |
||
55 |