We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3647522 commit 5157dfeCopy full SHA for 5157dfe
src/Util/FileDumper.php
@@ -32,8 +32,8 @@ public static function DUMP($var): void
32
{
33
// Define contents
34
$calledFrom = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS, 1)[0];
35
- $headline1 = "{$calledFrom['file']} (Line: {$calledFrom['line']})";
36
- $headline2 = "{$calledFrom['class']}::{$calledFrom['function']}()";
+ $headline1 = "{$calledFrom['file']} (Line: {$calledFrom['line']})"; // @phpstan-ignore-line
+ $headline2 = "{$calledFrom['class']}::{$calledFrom['function']}()"; // @phpstan-ignore-line
37
$dateTime = (new \DateTime())->format('Y_m_d_\T_H_i_s.u');
38
$filename = "dump_{$dateTime}.txt";
39
0 commit comments