Removed unused variables.

This commit is contained in:
Jan Böhmer 2020-03-29 22:37:27 +02:00
parent 3671c94844
commit 0fe83c7b3a
18 changed files with 14 additions and 29 deletions

View file

@ -69,7 +69,7 @@ class ParameterExtractor
$matches = [];
\preg_match($regex, $input, $matches);
if (! empty($matches)) {
[$raw, $name, $value] = $matches;
[, $name, $value] = $matches;
$value = trim($value);
//Dont allow empty names or values (these are a sign of an invalid extracted string)