1 | <?php |
||
7 | class DebugBacktraceConsole extends \DebugBacktrace |
||
8 | { |
||
9 | /** @var ?string */ |
||
10 | protected static $callerRemoveFile = __FILE__; |
||
11 | |||
12 | /** |
||
13 | * @param OutputInterface $output |
||
14 | * @param int $offset |
||
15 | * @param int|null $limit |
||
16 | */ |
||
17 | public static function dump(OutputInterface $output = null, $offset = 0, $limit = null) |
||
30 | |||
31 | /** |
||
32 | * @param OutputInterface $output |
||
33 | * @param int $offset |
||
34 | * @param int|null $limit |
||
35 | */ |
||
36 | public static function eDump(OutputInterface $output = null, $offset = 0, $limit = null) |
||
41 | |||
42 | /** |
||
43 | * @param Table $table |
||
44 | * @param array $backtrace |
||
45 | * @param int $index |
||
46 | */ |
||
47 | protected static function writeBacktraceDump(Table $table, array $backtrace, $index) |
||
56 | |||
57 | /** @param OutputInterface $output */ |
||
58 | protected static function writeCaller(OutputInterface $output) |
||
72 | |||
73 | /** @eturn OutputInterface */ |
||
74 | protected static function getOutput(OutputInterface $output = null) |
||
78 | } |
||
79 |