Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | 1 | public function image(): \Illuminate\Http\Response |
|
10 | { |
||
11 | 1 | return Response::make(" |
|
12 | 1 | <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 {$this->with} {$this->height}'> |
|
13 | 1 | <rect width='{$this->with}' height='{$this->height}' |
|
14 | 1 | fill='{$this->color}' |
|
15 | /> |
||
16 | </svg> |
||
17 | ", 200, [ |
||
18 | 1 | 'Content-Type' => 'image/svg+xml', |
|
19 | ]); |
||
22 |