Conditions | 3 |
Paths | 4 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3.0261 |
Changes | 0 |
1 | <?php |
||
11 | 1 | public function load(array $options = []) |
|
12 | { |
||
13 | 1 | $mode = isset($options['mode']) && $options['mode'] === 'inset' ? |
|
14 | ManipulatorInterface::THUMBNAIL_INSET : |
||
15 | 1 | ManipulatorInterface::THUMBNAIL_OUTBOUND; |
|
16 | |||
17 | 1 | $width = $options['width']; |
|
18 | 1 | $height = $options['height']; |
|
19 | |||
20 | 1 | return new ThumbnailFilter(new Box($width, $height), $mode); |
|
21 | } |
||
22 | } |
||
23 |