| Conditions | 4 |
| Paths | 4 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 4.016 |
| Changes | 0 | ||
| 1 | <?php |
||
| 43 | 2 | public function run(History $history) |
|
| 44 | { |
||
| 45 | 2 | foreach ($this->modifiers as $name => $config) { |
|
| 46 | 2 | if (is_null($config)) { |
|
| 47 | continue; |
||
| 48 | } |
||
| 49 | |||
| 50 | 2 | if (empty($config['class'])) { |
|
| 51 | 2 | $config['class'] = $name; |
|
| 52 | 2 | } |
|
| 53 | 2 | static::create($config)->run($history); |
|
| 54 | 2 | } |
|
| 55 | 2 | } |
|
| 56 | } |
||
| 57 |