Skip to content

Commit c0902ed

Browse files
authored
Merge pull request #201 from clue-labs/php8.2
Make tests compatible with PHP 8.2 by avoiding dynamic properties
2 parents a0400b6 + b4236c0 commit c0902ed

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

tests/FunctionalResolverTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99

1010
class FunctionalResolverTest extends TestCase
1111
{
12+
private $loop;
13+
private $resolver;
14+
1215
/**
1316
* @before
1417
*/

tests/Protocol/ParserTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
class ParserTest extends TestCase
1010
{
11+
private $parser;
12+
1113
/**
1214
* @before
1315
*/

tests/Query/SelectiveTransportExecutorTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111

1212
class SelectiveTransportExecutorTest extends TestCase
1313
{
14+
private $datagram;
15+
private $stream;
16+
private $executor;
17+
1418
/**
1519
* @before
1620
*/

0 commit comments

Comments
 (0)