Skip to content

Commit 4db6d3d

Browse files
committed
allow phpunit 10, fix undefined property
1 parent 7901d0f commit 4db6d3d

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
derby.log
2+
composer.lock

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"require": {
3030
"php": "^7.1 || ^8.0",
3131
"phpcr/phpcr-implementation": "2.1.*",
32-
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
32+
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0 || ^10.0"
3333
},
3434
"autoload": {
3535
"psr-4": {

tests/NodeTypeDiscovery/NodeNodeTypeReadMethodsTest.php

+5
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ class NodeNodeTypeReadMethodsTest extends BaseCase
3434
*/
3535
protected $deepnode;
3636

37+
/**
38+
* @var NodeInterface
39+
*/
40+
protected $nodewithmixin;
41+
3742
public function setUp(): void
3843
{
3944
parent::setUp();

0 commit comments

Comments
 (0)