Skip to content

Commit

Permalink
Fix CS issue in LocalhostSniff
Browse files Browse the repository at this point in the history
  • Loading branch information
ernilambar committed Nov 19, 2024
1 parent c1b7743 commit 26dc92f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public function process_token( $stackPtr ) {
'Do not use Localhost/127.0.0.1 in your code. Found: %s',
$this->find_token_in_multiline_string( $stackPtr, $content, $match[1] ),
'Found',
[ $match[0] ]
array( $match[0] )
);
}
}
Expand Down

0 comments on commit 26dc92f

Please sign in to comment.