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