Skip to content

Commit dc4cf88

Browse files
fix: PHPUnit 10.0.17 compatibility (#57)
1 parent 97b3278 commit dc4cf88

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

classes/PHPMock.php

+5-3
Original file line numberDiff line numberDiff line change
@@ -98,15 +98,17 @@ private function addMatcher($mock, $name)
9898
public function registerForTearDown(Deactivatable $deactivatable)
9999
{
100100
if (class_exists(Facade::class)) {
101+
$facade = Facade::instance();
102+
101103
$property = new ReflectionProperty(Facade::class, 'sealed');
102104
$property->setAccessible(true);
103-
$property->setValue(false);
105+
$property->setValue($facade, false);
104106

105-
Facade::registerSubscriber(
107+
$facade->registerSubscriber(
106108
new MockDisabler($deactivatable)
107109
);
108110

109-
$property->setValue(true);
111+
$property->setValue($facade, true);
110112

111113
return;
112114
}

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
},
2020
"require": {
2121
"php": ">=7",
22-
"phpunit/phpunit": "^6 || ^7 || ^8 || ^9 || ^10",
22+
"phpunit/phpunit": "^6 || ^7 || ^8 || ^9 || ^10.0.17",
2323
"php-mock/php-mock-integration": "^2.2.1"
2424
},
2525
"require-dev": {

0 commit comments

Comments
 (0)