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\Compactor; |
16
|
|
|
|
17
|
|
|
use function array_reduce; |
18
|
|
|
use function count; |
19
|
|
|
use Countable; |
20
|
|
|
use Humbug\PhpScoper\Whitelist; |
21
|
|
|
use KevinGH\Box\PhpScoper\Scoper; |
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* @private |
25
|
|
|
*/ |
26
|
|
|
final class Compactors implements Compactor, Countable |
27
|
|
|
{ |
28
|
|
|
private $compactors; |
29
|
|
|
private $scoperCompactor; |
30
|
|
|
|
31
|
|
|
public function __construct(Compactor ...$compactors) |
32
|
|
|
{ |
33
|
|
|
$this->compactors = $compactors; |
34
|
|
|
|
35
|
|
|
foreach ($compactors as $compactor) { |
36
|
|
|
if ($compactor instanceof PhpScoper) { |
37
|
|
|
$this->scoperCompactor = $compactor; |
38
|
|
|
|
39
|
|
|
break; |
40
|
|
|
} |
41
|
|
|
} |
42
|
|
|
} |
43
|
|
|
|
44
|
|
|
/** |
45
|
|
|
* {@inheritdoc} |
46
|
|
|
*/ |
47
|
|
|
public function compact(string $file, string $contents): string |
48
|
|
|
{ |
49
|
|
|
return (string) array_reduce( |
50
|
|
|
$this->compactors, |
51
|
|
|
static function (string $contents, Compactor $compactor) use ($file): string { |
52
|
|
|
return $compactor->compact($file, $contents); |
53
|
|
|
}, |
54
|
|
|
$contents |
55
|
|
|
); |
56
|
|
|
} |
57
|
|
|
|
58
|
|
|
public function getScoper(): ?Scoper |
59
|
|
|
{ |
60
|
|
|
return null !== $this->scoperCompactor ? $this->scoperCompactor->getScoper() : null; |
61
|
|
|
} |
62
|
|
|
|
63
|
|
|
public function getScoperWhitelist(): ?Whitelist |
64
|
|
|
{ |
65
|
|
|
return null !== $this->scoperCompactor ? $this->scoperCompactor->getScoper()->getWhitelist() : null; |
66
|
|
|
} |
67
|
|
|
|
68
|
|
|
public function registerWhitelist(Whitelist $whitelist): void |
69
|
|
|
{ |
70
|
|
|
if (null !== $this->scoperCompactor) { |
71
|
|
|
$this->scoperCompactor->getScoper()->changeWhitelist($whitelist); |
72
|
|
|
} |
73
|
|
|
} |
74
|
|
|
|
75
|
|
|
public function toArray(): array |
76
|
|
|
{ |
77
|
|
|
return $this->compactors; |
78
|
|
|
} |
79
|
|
|
|
80
|
|
|
/** |
81
|
|
|
* {@inheritdoc} |
82
|
|
|
*/ |
83
|
|
|
public function count(): int |
84
|
|
|
{ |
85
|
|
|
return count($this->compactors); |
86
|
|
|
} |
87
|
|
|
} |
88
|
|
|
|