We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84d6f88 commit eb62a02Copy full SHA for eb62a02
src/packstream/Bytes.php
@@ -2,7 +2,7 @@
2
3
namespace Bolt\packstream;
4
5
-use ArrayAccess, Countable;
+use ArrayAccess, Countable, Stringable;
6
7
/**
8
* Class Bytes
@@ -12,7 +12,7 @@
12
* @link https://www.neo4j.com/docs/bolt/current/packstream/#data-type-bytes
13
* @package Bolt\packstream
14
*/
15
-class Bytes implements ArrayAccess, Countable
+class Bytes implements ArrayAccess, Countable, Stringable
16
{
17
public function __construct(private array $bytes = [])
18
0 commit comments