There was an error while loading. Please reload this page.
1 parent acd6aaa commit fe1fe9bCopy full SHA for fe1fe9b
src/PHPFUI/MySQLSlowQuery/Parser.php
@@ -139,7 +139,7 @@ private function parse() : void
139
140
while (\strlen($line = $this->getNextLine()))
141
{
142
-if (0 === \strpos($line, self::PORT))// in middle of session, end it
+if (0 === \stripos($line, self::PORT))// in middle of session, end it
143
144
$currentSession[] = $line;
145
// eat the next line
@@ -165,7 +165,7 @@ private function parse() : void
165
166
while (\strlen($line = $this->getNextLine()) && '#' !== $line[0])
167
168
-if (0 === \strpos($line, self::PORT))// found a session
+if (0 === \stripos($line, self::PORT))// found a session
169
170
$this->pushLine($line);
171
// push this and previous line back on to stack
0 commit comments