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