Rotate::handle()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 6
Ratio 100 %
Metric Value
dl 6
loc 6
rs 9.4286
cc 1
eloc 3
nc 1
nop 2
1
<?php namespace Modules\Media\Image\Intervention\Manipulations;
2
3
use Modules\Media\Image\ImageHandlerInterface;
4
5 View Code Duplication
class Rotate implements ImageHandlerInterface
6
{
7
    private $defaults = [
8
        'angle' => 45,
9
        'bgcolor' => '#000000',
10
    ];
11
12
    /**
13
     * Handle the image manipulation request
14
     * @param  \Intervention\Image\Image $image
15
     * @param  array                     $options
16
     * @return \Intervention\Image\Image
17
     */
18
    public function handle($image, $options)
19
    {
20
        $options = array_merge($this->defaults, $options);
21
22
        return $image->rotate($options['angle'], $options['bgcolor']);
23
    }
24
}
25