Conditions | 3 |
Paths | 3 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 12 |
Changes | 0 |
1 | <?php |
||
10 | public function __construct($preset) |
||
11 | { |
||
12 | if (!\is_string($preset)) { |
||
13 | throw new \RuntimeException('Preset names must be strings'); |
||
14 | } |
||
15 | |||
16 | if (config('db-rebuild.presets.' . $preset) === null) { |
||
17 | throw new \RuntimeException("Preset '{$preset}' doesn't exist"); |
||
18 | } |
||
19 | |||
20 | $this->preset = $preset; |
||
21 | } |
||
70 |