Skip to content
This repository was archived by the owner on Jan 9, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/Server.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
use React\Socket\ConnectionInterface;
use React\Socket\Server as SocketServer;
use Symfony\Component\Console\Output\BufferedOutput;
use Symfony\Component\Console\Output\OutputInterface;
use BeyondCode\LaravelTinkerServer\Shell\ExecutionClosure;

class Server
Expand Down
5 changes: 3 additions & 2 deletions tests/fixtures/EchoStream.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

class EchoStream implements \React\Stream\WritableStreamInterface
{

public function on($event, callable $listener)
{
// TODO: Implement on() method.
Expand Down Expand Up @@ -37,6 +36,7 @@ public function isWritable()
{
return true;
}

public function write($data)
{
echo $data;
Expand All @@ -46,8 +46,9 @@ public function end($data = null)
{
// TODO: Implement end() method.
}

public function close()
{
// TODO: Implement close() method.
}
}
}