Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
brendt authored and actions-user committed Apr 27, 2021
1 parent 184ad05 commit 1399068
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,11 @@ public function read(): Generator

$outputFromSocket = socket_read($this->socket, $this->bufferSize);

if ($outputFromSocket === false || $outputFromSocket === ''){
if ($outputFromSocket === false || $outputFromSocket === '') {
break;
}

yield $outputFromSocket;
}
}
}

0 comments on commit 1399068

Please sign in to comment.