Skip to content

Commit

Permalink
Bump phpstan/phpstan from 1.11.1 to 1.11.2 (#3033)
Browse files Browse the repository at this point in the history
  • Loading branch information
yubiuser authored May 25, 2024
2 parents 17ccbeb + 49cfdc9 commit 3e1d5c9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions scripts/pi-hole/php/FTL.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ function connectFTL()
return @fsockopen($address, $port, $errno, $errstr, 1.0);
}

function sendRequestFTL($requestin, $socket)
function sendRequestFTL($request_in, $socket)
{
$request = '>'.$requestin;
$request = '>'.$request_in;
fwrite($socket, $request) or exit('{"error":"Could not send data to server"}');
}

Expand Down

0 comments on commit 3e1d5c9

Please sign in to comment.