Skip to content

Commit ce4d3ea

Browse files
committed
Merged branch '5.0' into 6.0
2 parents 1c31b30 + 2ca8b66 commit ce4d3ea

8 files changed

Lines changed: 2 additions & 13 deletions

File tree

phpstan-baseline.neon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22677,7 +22677,7 @@ parameters:
2267722677
-
2267822678
message: '#^Offset ''scheme'' might not exist on array\{scheme\?\: string, host\: string, port\: int\<0, 65535\>, user\?\: string, pass\?\: string, path\?\: string, query\?\: string, fragment\?\: string\}\.$#'
2267922679
identifier: offsetAccess.notFound
22680-
count: 4
22680+
count: 2
2268122681
path: tests/bundle/Core/Routing/DefaultRouterTest.php
2268222682

2268322683
-

tests/integration/Core/Repository/FieldType/DateAndTimeIntegrationTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ public function getTypeName(): string
3636
*/
3737
protected function supportsLikeWildcard($value): bool
3838
{
39-
parent::supportsLikeWildcard($value);
40-
4139
return false;
4240
}
4341

tests/integration/Core/Repository/FieldType/DateIntegrationTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ public function getTypeName(): string
3737
*/
3838
protected function supportsLikeWildcard($value): bool
3939
{
40-
parent::supportsLikeWildcard($value);
41-
4240
return false;
4341
}
4442

tests/integration/Core/Repository/FieldType/RelationIntegrationTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ public function getTypeName(): string
4141
*/
4242
protected function supportsLikeWildcard($value): bool
4343
{
44-
parent::supportsLikeWildcard($value);
45-
4644
return false;
4745
}
4846

tests/integration/Core/Repository/FieldType/RelationListIntegrationTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ public function getTypeName(): string
4141
*/
4242
protected function supportsLikeWildcard($value): bool
4343
{
44-
parent::supportsLikeWildcard($value);
45-
4644
return false;
4745
}
4846

tests/integration/Core/Repository/FieldType/SelectionIntegrationTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ public function getTypeName()
3737
*/
3838
protected function supportsLikeWildcard($value)
3939
{
40-
parent::supportsLikeWildcard($value);
41-
4240
return false;
4341
}
4442

tests/integration/Core/Repository/FieldType/TimeIntegrationTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,6 @@ public function getTypeName(): string
3535
*/
3636
protected function supportsLikeWildcard($value): bool
3737
{
38-
parent::supportsLikeWildcard($value);
39-
4038
return false;
4139
}
4240

tests/lib/Repository/Service/Mock/ContentTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ public function testConstructor(): void
9999
'remove_archived_versions_on_publish' => true,
100100
];
101101

102+
// @phpstan-ignore new.resultUnused (not using a service is intentional in this test)
102103
new ContentService(
103104
$repositoryMock,
104105
$persistenceHandlerMock,

0 commit comments

Comments
 (0)