| Total Complexity | 2 |
| Total Lines | 18 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class CircularDependencyException extends Exception implements ContainerExceptionInterface |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * Array with id of the executed processes until the error happens |
||
| 13 | * @var array |
||
| 14 | */ |
||
| 15 | protected $executionStack; |
||
| 16 | |||
| 17 | public static function forId($id, array $executionStack): self |
||
| 22 | } |
||
| 23 | |||
| 24 | public function getExecutionStack(): array |
||
| 29 |