There was an error while loading. Please reload this page.
1 parent 9a7b262 commit e27a986Copy full SHA for e27a986
src/PHPFUI/MySQLSlowQuery/BaseObject.php
@@ -13,16 +13,11 @@ abstract public function __construct(array $paramters = []);
13
*/
14
public function __get(string $field)
15
{
16
-
17
18
-if (! \array_key_exists($field, $this->fields))
+if (! \array_key_exists($field, $this->fields))
19
20
throw new Exception\Get("{$field} is not a valid field for " . static::class);
21
}
22
23
24
25
26
return $this->fields[$field];
27
28
src/PHPFUI/MySQLSlowQuery/Parser.php
@@ -179,10 +179,7 @@ private function parse() : void
179
180
break;
181
182
183
184
-$query[] = \trim($line);
185
+$query[] = \trim($line);
186
187
188
if (\strlen($line) && '#' === $line[0])
0 commit comments