Completed
Push — 2.0 ( 21d8a7...479f85 )
by Nicolas
03:02
created

Quality   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 13
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A handle() 0 4 1
1
<?php namespace Modules\Media\Image\Intervention\Manipulations;
2
3
use Modules\Media\Image\ImageHandlerInterface;
4
5
class Quality implements ImageHandlerInterface
6
{
7
    /**
8
     * Handle the image manipulation request
9
     * @param  \Intervention\Image\Image $image
10
     * @param  array                     $options
11
     * @return \Intervention\Image\Image
12
     */
13
    public function handle($image, $options)
14
    {
15
        return $image;
16
    }
17
}
18