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

ImagickBinary::imagickInstalled()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 0
dl 0
loc 4
ccs 3
cts 3
cp 1
crap 1
rs 10
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