Skip to content

Commit 05a86c1

Browse files
committed
Updates
1 parent 9d18a9c commit 05a86c1

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

src/Hardware/Remote/RemoteBlockDevice.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
use Flat3\RevPi\Interfaces\Hardware\Seek;
88

9-
abstract class RemoteBlockDevice extends RemoteDevice implements Seek
9+
class RemoteBlockDevice extends RemoteDevice implements Seek
1010
{
1111
public function lseek(int $offset, int $whence): int
1212
{

src/Hardware/Remote/RemoteCharacterDevice.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
use Flat3\RevPi\Rpc\RpcDevice;
1010
use Revolt\EventLoop;
1111

12-
abstract class RemoteCharacterDevice extends RemoteDevice implements Stream
12+
class RemoteCharacterDevice extends RemoteDevice implements Stream
1313
{
1414
/** @var resource */
1515
protected mixed $local;

src/Hardware/Remote/RemoteDevice.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
use function Amp\async;
1313

14-
abstract class RemoteDevice implements Device, Ioctl
14+
class RemoteDevice implements Device, Ioctl
1515
{
1616
public function __construct(protected RpcDevice $device) {}
1717

src/Hardware/Virtual/VirtualBlockDevice.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use Flat3\RevPi\Interfaces\Hardware\Device;
99
use Flat3\RevPi\Interfaces\Hardware\Seek;
1010

11-
abstract class VirtualBlockDevice implements Device, Seek
11+
class VirtualBlockDevice implements Device, Seek
1212
{
1313
protected string $memory = '';
1414

src/Hardware/Virtual/VirtualCharacterDevice.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@
66

77
use Flat3\RevPi\Exceptions\PosixDeviceException;
88
use Flat3\RevPi\Interfaces\Hardware\Device;
9-
use Flat3\RevPi\Interfaces\Hardware\Ioctl;
109
use Flat3\RevPi\Interfaces\Hardware\Stream;
1110

12-
abstract class VirtualCharacterDevice implements Device, Ioctl, Stream
11+
class VirtualCharacterDevice implements Device, Stream
1312
{
1413
/** @var resource */
1514
protected mixed $local;

0 commit comments

Comments
 (0)