Passed
Pull Request — master (#1676)
by Arnaud
10:31 queued 03:42
created

Images::processFile()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
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 1
dl 0
loc 5
ccs 3
cts 3
cp 1
crap 1
rs 10
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of Cecil.
7
 *
8
 * Copyright (c) Arnaud Ligny <[email protected]>
9
 *
10
 * For the full copyright and license information, please view the LICENSE
11
 * file that was distributed with this source code.
12
 */
13
14
namespace Cecil\Step\Optimize;
15
16
use Cecil\Assets\Image\Optimizer;
17
18
/**
19
 * Optimize image files.
20
 */
21
class Images extends AbstractOptimize
22
{
23
    /**
24
     * {@inheritdoc}
25
     */
26 1
    public function getName(): string
27
    {
28 1
        return 'Optimizing images';
29
    }
30
31
    /**
32
     * {@inheritdoc}
33
     */
34 1
    public function init(array $options): void
35
    {
36 1
        $this->type = 'images';
37 1
        parent::init($options);
38
    }
39
40
    /**
41
     * {@inheritdoc}
42
     */
43 1
    public function setProcessor(): void
44
    {
45 1
        $this->processor = Optimizer::create($this->config->get('assets.images.quality') ?? 75);
46
    }
47
48
    /**
49
     * {@inheritdoc}
50
     */
51 1
    public function processFile(\Symfony\Component\Finder\SplFileInfo $file): string
52
    {
53 1
        $this->processor->optimize($file->getPathname());
54
55 1
        return $file->getContents();
56
    }
57
58
    /**
59
     * {@inheritdoc}
60
     */
61 1
    public function encode(string $content = null): ?string
62
    {
63 1
        return base64_encode((string) $content);
64
    }
65
66
    /**
67
     * {@inheritdoc}
68
     */
69 1
    public function decode(string $content = null): ?string
70
    {
71 1
        return base64_decode((string) $content);
72
    }
73
}
74