blob: 26f676b091ac27b2a8dc7163e11f2da39c5a957a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
<?php
/*
* This file is part of the league/commonmark package.
*
* (c) Colin O'Dell <colinodell@gmail.com>
*
* Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js)
* - (c) John MacFarlane
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace League\CommonMark\Util;
class Configuration
{
protected $config;
/**
* @param array $config
*/
public function __construct(array $config = [])
{
$this->config = $config;
}
/**
* @param array $config
*/
public function mergeConfig(array $config = [])
{
$this->config = \array_replace_recursive($this->config, $config);
}
/**
* @param array $config
*/
public function setConfig(array $config = [])
{
$this->config = $config;
}
/**
* @param string|null $key
* @param mixed $default
*
* @return mixed
*/
public function getConfig(?string $key = null, $default = null)
{
if ($key === null) {
return $this->config;
}
// accept a/b/c as ['a']['b']['c']
if (\strpos($key, '/')) {
return $this->getConfigByPath($key, $default);
}
if (!isset($this->config[$key])) {
return $default;
}
return $this->config[$key];
}
/**
* @param string $keyPath
* @param string|null $default
*
* @return mixed
*/
protected function getConfigByPath(string $keyPath, $default = null)
{
$keyArr = \explode('/', $keyPath);
$data = $this->config;
foreach ($keyArr as $k) {
if (!\is_array($data) || !isset($data[$k])) {
return $default;
}
$data = $data[$k];
}
return $data;
}
}
|