Total Complexity | 6 |
Total Lines | 39 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class BacktraceAccessor |
||
8 | { |
||
9 | private const KEY_CLASS = 'class'; |
||
10 | private const KEY_OBJECT = 'object'; |
||
11 | private const NO_CLASS = '**NO_CLASS**'; |
||
12 | private const NO_OBJECT = '**NO_OBJECT**'; |
||
13 | |||
14 | /** |
||
15 | * @codeCoverageIgnore |
||
16 | * |
||
17 | * @param int $position Position (n) |
||
18 | * @param string $type Object |
||
19 | * |
||
20 | * @return null|mixed |
||
21 | */ |
||
22 | public function getNthObjectOfType(int $position, string $type) |
||
48 |