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 a01ea55 commit 474422eCopy full SHA for 474422e
res/XDebugParser.php
@@ -72,7 +72,7 @@ function parseLine($line)
72
$this->functions[$funcNr]['time.exit'] = $parts[3];
73
$this->functions[$funcNr]['memory.exit'] = $parts[4];
74
$this->functions[$funcNr]['time.diff'] = $this->functions[$funcNr]['time.exit'] - $this->functions[$funcNr]['time.enter'];
75
- $this->functions[$funcNr]['memory.diff'] = $this->functions[$funcNr]['memory.exit'] - $this->functions[$funcNr]['memory.enter'];
+ $this->functions[$funcNr]['memory.diff'] = (int) $this->functions[$funcNr]['memory.exit'] - (int) $this->functions[$funcNr]['memory.enter'];
76
break;
77
case 'R'; // Function return
78
$this->functions[$funcNr]['return'] = $parts[5];
0 commit comments