| Total Complexity | 5 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | final class CompatCallTraceFormatter implements CallTraceFormatter |
||
| 22 | { |
||
| 23 | private static ?self $cache; |
||
| 24 | |||
| 25 | public function __construct( |
||
| 26 | private CompatCallFrameFormatter $call_frame_formatter, |
||
| 27 | ) { |
||
| 28 | } |
||
| 29 | |||
| 30 | public static function getInstance(): self |
||
| 36 | } |
||
| 37 | |||
| 38 | public function format(CallTrace $call_trace): string |
||
| 45 | } |
||
| 46 | } |
||
| 47 |