Completed
Push — master ( 52b242...112fdc )
by Thomas
17s queued 11s
created

addConfiguration()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 2
c 0
b 0
f 0
nc 1
nop 2
dl 0
loc 4
ccs 3
cts 3
cp 1
crap 1
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
/*
6
 * This file is part of the ekino Drupal Debug project.
7
 *
8
 * (c) ekino
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 Ekino\Drupal\Debug\Action\DisplayPrettyExceptionsASAP;
15
16
use Ekino\Drupal\Debug\Configuration\CharsetConfigurationTrait;
17
use Ekino\Drupal\Debug\Configuration\FileLinkFormatConfigurationTrait;
18
use Ekino\Drupal\Debug\Configuration\Model\ActionConfiguration;
19
use Ekino\Drupal\Debug\Configuration\Model\DefaultsConfiguration;
20
use Ekino\Drupal\Debug\Option\OptionsInterface;
21
use Symfony\Component\Config\Definition\Builder\NodeBuilder;
22
23
class DisplayPrettyExceptionsASAPOptions implements OptionsInterface
24
{
25
    use CharsetConfigurationTrait;
26
    use FileLinkFormatConfigurationTrait;
27
28
    /**
29
     * @var string|null
30
     */
31
    private $charset;
32
33
    /**
34
     * @var string|null
35
     */
36
    private $fileLinkFormat;
37
38
    /**
39
     * @param string|null $charset
40
     * @param string|null $fileLinkFormat
41
     */
42 8
    public function __construct(?string $charset, ?string $fileLinkFormat)
43
    {
44 8
        $this->charset = $charset;
45 8
        $this->fileLinkFormat = $fileLinkFormat;
46 8
    }
47
48
    /**
49
     * @return string|null
50
     */
51 2
    public function getCharset(): ?string
52
    {
53 2
        return $this->charset;
54
    }
55
56
    /**
57
     * @return string|null
58
     */
59 2
    public function getFileLinkFormat(): ?string
60
    {
61 2
        return $this->fileLinkFormat;
62
    }
63
64 19
    public static function addConfiguration(NodeBuilder $nodeBuilder, DefaultsConfiguration $defaultsConfiguration): void
65
    {
66 19
        self::addCharsetConfigurationNodeFromDefaultsConfiguration($nodeBuilder, $defaultsConfiguration);
67 19
        self::addFileLinkFormatConfigurationNodeFromDefaultsConfiguration($nodeBuilder, $defaultsConfiguration);
68 19
    }
69
70 2
    public static function getOptions(string $appRoot, ActionConfiguration $actionConfiguration): OptionsInterface
71
    {
72 2
        return new self(self::getConfiguredCharset($actionConfiguration), self::getConfiguredFileLinkFormat($actionConfiguration));
73
    }
74
}
75