Skip to content

Commit ff147ec

Browse files
committed
Merge remote-tracking branch 'origin/develop' into Hammer-SVC-False-Positive-Build
2 parents 65e0bd6 + 3d2e6e5 commit ff147ec

23 files changed

+287
-397
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
},
2121
"require-dev": {
2222
"ext-dom": "*",
23-
"phpunit/phpunit": "~9.5.8",
23+
"phpunit/phpunit": "^10.5",
2424
"squizlabs/php_codesniffer": "~3.6.0"
2525
},
2626
"autoload": {

composer.lock

Lines changed: 263 additions & 373 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/tests/Unit/ClassHierarchy/EntityTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ public function testIsEnum(string $type, bool $expected)
503503
*
504504
* @return array
505505
*/
506-
public function dataProviderIsClass()
506+
public static function dataProviderIsClass()
507507
{
508508
return [
509509
'entity-is-class-returns-true' => [
@@ -530,7 +530,7 @@ public function dataProviderIsClass()
530530
*
531531
* @return array
532532
*/
533-
public function dataProviderIsInterface()
533+
public static function dataProviderIsInterface()
534534
{
535535
return [
536536
'entity-is-class-returns-false' => [
@@ -557,7 +557,7 @@ public function dataProviderIsInterface()
557557
*
558558
* @return array
559559
*/
560-
public function dataProviderIsTrait()
560+
public static function dataProviderIsTrait()
561561
{
562562
return [
563563
'entity-is-class-returns-false' => [

dev/tests/Unit/Console/Command/CompareSourceCommandApiClassesTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function testExecute(
4242
);
4343
}
4444

45-
public function changesDataProvider()
45+
public static function changesDataProvider()
4646
{
4747
$pathToFixtures = __DIR__ . '/CompareSourceCommandTest/_files/api-class';
4848
return [

dev/tests/Unit/Console/Command/CompareSourceCommandApiInterfacesTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function testExecute(
4242
);
4343
}
4444

45-
public function changesDataProvider()
45+
public static function changesDataProvider()
4646
{
4747
$pathToFixtures = __DIR__ . '/CompareSourceCommandTest/_files/api-interface';
4848
return [

dev/tests/Unit/Console/Command/CompareSourceCommandApiTraitsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public function testExecute(
4444
);
4545
}
4646

47-
public function changesDataProvider()
47+
public static function changesDataProvider()
4848
{
4949
$pathToFixtures = __DIR__ . '/CompareSourceCommandTest/_files/api-trait';
5050

dev/tests/Unit/Console/Command/CompareSourceCommandDatabaseSchemasTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public function testExecute(
4848
/**
4949
* @return array
5050
*/
51-
public function changesDataProvider()
51+
public static function changesDataProvider()
5252
{
5353
$pathToFixtures = __DIR__ . '/CompareSourceCommandTest/_files/db_schema';
5454
return [

dev/tests/Unit/Console/Command/CompareSourceCommandDiXmlTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function testExecute(
4242
);
4343
}
4444

45-
public function changesDataProvider()
45+
public static function changesDataProvider()
4646
{
4747
$pathToFixtures = __DIR__ . '/CompareSourceCommandTest/_files/di_xml';
4848

dev/tests/Unit/Console/Command/CompareSourceCommandLayoutTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function testExecute(
4242
);
4343
}
4444

45-
public function changesDataProvider()
45+
public static function changesDataProvider()
4646
{
4747
$pathToFixtures = __DIR__ . '/CompareSourceCommandTest/_files/layout_xml';
4848
getcwd();

dev/tests/Unit/Console/Command/CompareSourceCommandLessTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function testExecute(
4242
);
4343
}
4444

45-
public function changesDataProvider()
45+
public static function changesDataProvider()
4646
{
4747
$pathToFixtures = __DIR__ . '/CompareSourceCommandTest/_files/less';
4848

0 commit comments

Comments
 (0)