Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
tonysm committed Dec 18, 2024
1 parent 31a8b64 commit b314256
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Feature/EnvironmentTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function it_detects_a_port_conflict()
$this->assertTrue($environment->portIsAvailable($port));

$socket = socket_create(domain: AF_INET, type: SOCK_STREAM, protocol: SOL_TCP);
assert($socket !== false, "Was not able to create a socket.");
assert($socket !== false, 'Was not able to create a socket.');
socket_set_option($socket, SOL_SOCKET, SO_REUSEADDR, 1);
assert(socket_bind($socket, 'localhost', $port) !== false, "Was not able to bind socket to port {$port}");
assert(socket_listen($socket, backlog: 5));
Expand Down

0 comments on commit b314256

Please sign in to comment.