Skip to content

Commit ae63eb2

Browse files
committed
Use PHP 7.4 property types
1 parent c3591a3 commit ae63eb2

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/BinaryStream.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,8 @@
3232

3333
class BinaryStream{
3434

35-
/** @var int */
36-
protected $offset;
37-
/** @var string */
38-
protected $buffer;
35+
protected int $offset;
36+
protected string $buffer;
3937

4038
public function __construct(string $buffer = "", int $offset = 0){
4139
$this->buffer = $buffer;

0 commit comments

Comments
 (0)