Skip to content

Commit 5f27884

Browse files
committed
style fix
1 parent 4b3212c commit 5f27884

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Mike42/Escpos/PrintConnectors/NetworkPrintConnector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function __construct(string $ip, int $port = 9100, int $timeout = -1)
3131
{
3232
// Note: Once the minimum PHP version is PHP 7.0 or higher, we can type $timeout as '?int' to make it optional
3333
// instead of using -1.
34-
if($timeout == -1) {
34+
if ($timeout == -1) {
3535
$this -> fp = @fsockopen($ip, $port, $errno, $errstr);
3636
} else {
3737
$this -> fp = @fsockopen($ip, $port, $errno, $errstr, (float)$timeout);

0 commit comments

Comments
 (0)