Failed Conditions
Pull Request — master (#11)
by Adrien
15:48 queued 12:33
created

ImagineFactory::__invoke()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 11
Code Lines 5

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 3.3332

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 3
eloc 5
c 1
b 0
f 0
nc 3
nop 3
dl 0
loc 11
ccs 4
cts 6
cp 0.6667
crap 3.3332
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Ecodev\Felix\Service;
6
7
use Exception;
8
use Imagick;
9
use Imagine\Image\ImagineInterface;
10
use Imagine\Imagick\Imagine;
11
use Interop\Container\ContainerInterface;
12
use Laminas\ServiceManager\Factory\FactoryInterface;
13
14
final class ImagineFactory implements FactoryInterface
15
{
16
    /**
17
     * Return the preferred driver available on this system.
18
     *
19
     * @param string $requestedName
20
     */
21 1
    public function __invoke(ContainerInterface $container, $requestedName, ?array $options = null): ImagineInterface
22
    {
23 1
        if (class_exists('Gmagick')) {
24
            return new \Imagine\Gmagick\Imagine();
25
        }
26
27 1
        if (class_exists(Imagick::class)) {
28 1
            return new Imagine();
29
        }
30
31
        throw new Exception('Gmagick and Imagick are missing, install one of those module');
32
    }
33
}
34