Skip to content
This repository was archived by the owner on Jan 9, 2024. It is now read-only.

Commit 0b2b205

Browse files
authored
Apply fixes from StyleCI (#2)
1 parent 65a2205 commit 0b2b205

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Server.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
use React\Socket\ConnectionInterface;
1010
use React\Socket\Server as SocketServer;
1111
use Symfony\Component\Console\Output\BufferedOutput;
12-
use Symfony\Component\Console\Output\OutputInterface;
1312
use BeyondCode\LaravelTinkerServer\Shell\ExecutionClosure;
1413

1514
class Server

tests/fixtures/EchoStream.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
class EchoStream implements \React\Stream\WritableStreamInterface
44
{
5-
65
public function on($event, callable $listener)
76
{
87
// TODO: Implement on() method.
@@ -37,6 +36,7 @@ public function isWritable()
3736
{
3837
return true;
3938
}
39+
4040
public function write($data)
4141
{
4242
echo $data;
@@ -46,8 +46,9 @@ public function end($data = null)
4646
{
4747
// TODO: Implement end() method.
4848
}
49+
4950
public function close()
5051
{
5152
// TODO: Implement close() method.
5253
}
53-
}
54+
}

0 commit comments

Comments
 (0)