1
0
mirror of https://github.com/Seldaek/monolog.git synced 2025-08-23 13:23:08 +02:00

Upgrade to phpunit 10 (#1806)

Co-authored-by: Christopher Georg <christopher.georg@sr-travel.de>
This commit is contained in:
chris
2023-06-20 15:56:11 +02:00
committed by GitHub
parent 50409b8169
commit 8561130215
28 changed files with 106 additions and 85 deletions

View File

@@ -21,7 +21,7 @@ class UtilsTest extends \PHPUnit_Framework_TestCase
$this->assertSame($expected, Utils::getClass($object));
}
public function provideObjects()
public static function provideObjects()
{
return [
['stdClass', new \stdClass()],
@@ -40,7 +40,7 @@ class UtilsTest extends \PHPUnit_Framework_TestCase
$this->assertSame($expected, Utils::canonicalizePath($input));
}
public function providePathsToCanonicalize()
public static function providePathsToCanonicalize()
{
return [
['/foo/bar', '/foo/bar'],
@@ -62,7 +62,7 @@ class UtilsTest extends \PHPUnit_Framework_TestCase
Utils::handleJsonError($code, 'faked');
}
public function providesHandleJsonErrorFailure()
public static function providesHandleJsonErrorFailure()
{
return [
'depth' => [JSON_ERROR_DEPTH, 'Maximum stack depth exceeded'],
@@ -87,7 +87,7 @@ class UtilsTest extends \PHPUnit_Framework_TestCase
$this->assertSame($expect, $in);
}
public function providesDetectAndCleanUtf8()
public static function providesDetectAndCleanUtf8()
{
$obj = new \stdClass;
@@ -123,7 +123,7 @@ class UtilsTest extends \PHPUnit_Framework_TestCase
/**
* @return array[]
*/
public function providesPcreLastErrorMessage(): array
public static function providesPcreLastErrorMessage(): array
{
return [
[0, 'PREG_NO_ERROR'],
@@ -137,7 +137,7 @@ class UtilsTest extends \PHPUnit_Framework_TestCase
];
}
public function provideIniValuesToConvertToBytes()
public static function provideIniValuesToConvertToBytes()
{
return [
['1', 1],