Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
13 | 8 | public static function guess() |
|
14 | { |
||
15 | 8 | foreach (debug_backtrace(DEBUG_BACKTRACE_PROVIDE_OBJECT, 10) as $trace) { |
|
16 | 6 | if (self::shouldIgnore($trace['object'] ?? null)) { |
|
17 | 6 | continue; |
|
18 | } |
||
19 | |||
20 | 6 | return $trace['object']; |
|
21 | } |
||
22 | |||
23 | 2 | throw new \LogicException('No caller found.'); |
|
24 | } |
||
25 | |||
39 |