| Conditions | 3 |
| Paths | 3 |
| Total Lines | 13 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 11 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 36 | 8 | private function run() |
|
| 37 | { |
||
| 38 | 8 | while ($this->initial) { |
|
| 39 | 6 | if (!$this->sortOnce()) { |
|
| 40 | 1 | throw new \RuntimeException( |
|
| 41 | 1 | sprintf( |
|
| 42 | 1 | 'Modules sort not possible. Maybe circular dependencies between these modules: %s.', |
|
| 43 | 1 | implode(', ', array_keys($this->initial)) |
|
| 44 | 1 | ) |
|
| 45 | 1 | ); |
|
| 46 | } |
||
| 47 | 8 | }; |
|
| 48 | 7 | } |
|
| 49 | |||
| 97 |