Conditions | 2 |
Paths | 2 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
43 | 5 | public function getThumbnailSpecs($square, $scale) { |
|
44 | 5 | $height = ceil(200 * $scale); |
|
45 | 5 | if ($square) { |
|
46 | 2 | $width = $height; |
|
47 | } else { |
||
48 | 3 | $width = 2 * $height; |
|
49 | } |
||
50 | |||
51 | 5 | $thumbnail = [$width, $height, !$square, $this->animatedPreview, $this->base64Encode]; |
|
52 | |||
53 | 5 | return $thumbnail; |
|
54 | } |
||
55 | |||
57 |