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