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

ImagickBinary::createCommandLineOptions()   B

Complexity

Conditions 7
Paths 64

Size

Total Lines 38
Code Lines 18

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 16
CRAP Score 7.0671

Importance

Changes 0
Metric Value
cc 7
eloc 18
nc 64
nop 0
dl 0
loc 38
ccs 16
cts 18
cp 0.8889
crap 7.0671
rs 8.8333
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