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