Skip to content

Commit

Permalink
TASK: Fix missing check (#3406)
Browse files Browse the repository at this point in the history
  • Loading branch information
sabbelasichon authored Mar 28, 2023
1 parent 71a923e commit 2bb4e89
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public function change(string $condition): ?string
$matches
);

if (! is_string($matches['value'])) {
if (! isset($matches['value'])) {
return $condition;
}

Expand Down

0 comments on commit 2bb4e89

Please sign in to comment.