Completed
Push — master ( 80b762...b17462 )
by Bjørn
05:19
created

ImagickBinary::webPDelegateInstalled()   A

Complexity

Conditions 5
Paths 7

Size

Total Lines 19
Code Lines 9

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 8.125

Importance

Changes 0
Metric Value
cc 5
eloc 9
nc 7
nop 0
dl 0
loc 19
ccs 5
cts 10
cp 0.5
crap 8.125
rs 9.6111
c 0
b 0
f 0
1
<?php
2
3
namespace WebPConvert\Convert\Converters;
4
5
use WebPConvert\Convert\Converters\AbstractConverter;
6
use WebPConvert\Convert\Exceptions\ConversionFailedException;
7
8
/**
9
 * Non-functional converter, just here to tell you that it has been renamed.
10
 *
11
 * @package    WebPConvert
12
 * @author     Bjørn Rosell <[email protected]>
13
 * @since      Class available since Release 2.0.0
14
 */
15
class ImagickBinary extends AbstractConverter
16
{
17
    public function checkOperationality()
18
    {
19
        throw new ConversionFailedException(
20
            'This converter has changed ID from "imagickbinary" to "imagemagick". You need to change!'
21
        );
22
    }
23
24
    protected function doActualConvert()
25
    {
26
        $this->checkOperationality();
27
    }
28
}
29