SelectiveBlurFilter::render()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 2
Bugs 0 Features 2
Metric Value
c 2
b 0
f 2
dl 0
loc 6
ccs 3
cts 3
cp 1
rs 9.4285
cc 1
eloc 3
nc 1
nop 1
crap 1
1
<?php
2
3
/*
4
 * This file is part of the kaloa/image package.
5
 *
6
 * For full copyright and license information, please view the LICENSE file
7
 * that was distributed with this source code.
8
 */
9
10
namespace Kaloa\Image\Filter;
11
12
use Kaloa\Image\Image;
13
14
final class SelectiveBlurFilter extends AbstractFilter
15
{
16 1
    public function render(Image $srcImage)
17
    {
18 1
        imagefilter($srcImage->getResource(), IMG_FILTER_SELECTIVE_BLUR);
19
20 1
        return $srcImage->getResource();
21
    }
22
}
23