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