Skip to content

Commit 37d4bd9

Browse files
patch_bolt allowed for v4.3
1 parent d37bbe8 commit 37d4bd9

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

src/protocol/V4_3.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313
class V4_3 extends AProtocol
1414
{
15-
use \Bolt\protocol\v1\SetAvailableStructures;
15+
use \Bolt\protocol\v4_3\SetAvailableStructures;
1616

1717
use \Bolt\protocol\v1\ResetMessage;
1818

src/protocol/V4_4.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313
class V4_4 extends AProtocol
1414
{
15-
use \Bolt\protocol\v4_4\SetAvailableStructures;
15+
use \Bolt\protocol\v4_3\SetAvailableStructures;
1616

1717
use \Bolt\protocol\v1\ResetMessage;
1818

src/protocol/v4_4/SetAvailableStructures.php renamed to src/protocol/v4_3/SetAvailableStructures.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Bolt\protocol\v4_4;
3+
namespace Bolt\protocol\v4_3;
44

55
use Bolt\protocol\v1\structures\{
66
Date,
@@ -28,7 +28,7 @@
2828
* @author Michal Stefanak
2929
* @link https://github.com/neo4j-php/Bolt
3030
* @see https://www.neo4j.com/docs/bolt/current/bolt/structure-semantics/
31-
* @package Bolt\protocol
31+
* @package Bolt\protocol\v4_3
3232
*/
3333
trait SetAvailableStructures
3434
{

tests/structures/v4_4/StructuresTest.php renamed to tests/structures/v4_3/StructuresTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Bolt\tests\structures\v4_4;
3+
namespace Bolt\tests\structures\v4_3;
44

55
use Bolt\Bolt;
66
use Bolt\protocol\AProtocol;
@@ -26,7 +26,7 @@
2626
* @covers \Bolt\packstream\v1\Packer
2727
* @covers \Bolt\packstream\v1\Unpacker
2828
*
29-
* @package Bolt\tests\protocol\v4_4
29+
* @package Bolt\tests\protocol\v4_3
3030
*/
3131
class StructuresTest extends \Bolt\tests\structures\AStructures
3232
{

0 commit comments

Comments
 (0)