| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 3 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 35 | public function serveDefault($size = 0): Response |
||
| 36 | { |
||
| 37 | $image = $this->cache()->remember('rendering.system.default_isometric_avatar', 3600, function () use ($size) { |
||
| 38 | return (string) $this->rendering->isometricAvatar(null, (int) $size); |
||
| 39 | }); |
||
| 40 | |||
| 41 | return $this->pngResponse($image); |
||
| 42 | } |
||
| 44 |