Passed
Pull Request — master (#302)
by Théo
02:32
created

Compactors   A

Complexity

Total Complexity 9

Size/Duplication

Total Lines 44
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 9
eloc 17
dl 0
loc 44
rs 10
c 0
b 0
f 0

5 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 9 3
A getScoperWhitelist() 0 3 2
A registerWhitelist() 0 4 2
A toArray() 0 3 1
A compactContents() 0 8 1
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the box project.
7
 *
8
 * (c) Kevin Herrera <[email protected]>
9
 *     Théo Fidry <[email protected]>
10
 *
11
 * This source file is subject to the MIT license that is bundled
12
 * with this source code in the file LICENSE.
13
 */
14
15
namespace KevinGH\Box;
16
17
use Humbug\PhpScoper\Whitelist;
18
use KevinGH\Box\Compactor\PhpScoper;
19
20
final class Compactors
21
{
22
    private $compactors;
23
    private $scoperCompactor;
24
25
    public function __construct(Compactor ...$compactors)
26
    {
27
        $this->compactors = $compactors;
28
29
        foreach ($compactors as $compactor) {
30
            if ($compactor instanceof PhpScoper) {
31
                $this->scoperCompactor = $compactor;
32
33
                break;
34
            }
35
        }
36
    }
37
38
    public function compactContents(string $file, string $contents): string
39
    {
40
        return (string) array_reduce(
41
            $this->compactors,
42
            function (string $contents, Compactor $compactor) use ($file): string {
43
                return $compactor->compact($file, $contents);
44
            },
45
            $contents
46
        );
47
    }
48
49
    public function getScoperWhitelist(): ?Whitelist
50
    {
51
        return null !== $this->scoperCompactor ? $this->scoperCompactor->getScoper()->getWhitelist() : null;
52
    }
53
54
    public function registerWhitelist(Whitelist $whitelist): void
55
    {
56
        if (null !== $this->scoperCompactor) {
57
            $this->scoperCompactor->getScoper()->changeWhitelist($whitelist);
58
        }
59
    }
60
61
    public function toArray(): array
62
    {
63
        return $this->compactors;
64
    }
65
}
66