-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathConfiguration.php
More file actions
79 lines (62 loc) · 1.83 KB
/
Configuration.php
File metadata and controls
79 lines (62 loc) · 1.83 KB
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
<?php
declare(strict_types=1);
namespace Tests\Configurations;
use DragonCode\Support\Concerns\Makeable;
use Illuminate\Contracts\Support\Arrayable;
use Illuminate\Support\Arr;
use Illuminate\Support\Str;
use InvalidArgumentException;
/**
* @method void setHost(string $value)
* @method void setDatabase(string|null $value)
* @method void setUsername(string $value)
* @method void setPassword(string $value)
* @method bool hasDatabase()
* @method bool doesntDatabase()
*/
class Configuration implements Arrayable
{
use Makeable;
protected $config = [];
public function __call(string $name, array $value)
{
$key = $this->resolveKeyName($name);
switch (true) {
case Str::startsWith($name, 'set'):
return $this->set($key, $value);
case Str::startsWith($name, 'has'):
return $this->has($key);
case Str::startsWith($name, 'doesnt'):
return ! $this->has($key);
default:
throw new InvalidArgumentException('Unknown method: ' . $name);
}
}
public function merge(array $config): self
{
$this->config = array_merge($this->config, $config);
return $this;
}
public function toArray(): array
{
return $this->config;
}
protected function set(string $key, $value): self
{
Arr::set($this->config, $key, $this->castValue($value[0]));
return $this;
}
protected function has(string $key): bool
{
$value = Arr::get($this->config, $key);
return ! empty($value);
}
protected function resolveKeyName(string $name): string
{
return (string) Str::of($name)->snake()->after('_');
}
protected function castValue($value)
{
return is_array($value) ? $value : (string) $value;
}
}