Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion phpstan-baseline.neon
Original file line number Diff line number Diff line change
Expand Up @@ -22677,7 +22677,7 @@ parameters:
-
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\}\.$#'
identifier: offsetAccess.notFound
count: 4
count: 2
path: tests/bundle/Core/Routing/DefaultRouterTest.php

-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,6 @@ public function getTypeName(): string
*/
protected function supportsLikeWildcard($value): bool
{
parent::supportsLikeWildcard($value);

return false;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ public function getTypeName(): string
*/
protected function supportsLikeWildcard($value): bool
{
parent::supportsLikeWildcard($value);

return false;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ public function getTypeName(): string
*/
protected function supportsLikeWildcard($value): bool
{
parent::supportsLikeWildcard($value);

return false;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ public function getTypeName(): string
*/
protected function supportsLikeWildcard($value): bool
{
parent::supportsLikeWildcard($value);

return false;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ public function getTypeName()
*/
protected function supportsLikeWildcard($value)
{
parent::supportsLikeWildcard($value);

return false;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ public function getTypeName(): string
*/
protected function supportsLikeWildcard($value): bool
{
parent::supportsLikeWildcard($value);

return false;
}

Expand Down
1 change: 1 addition & 0 deletions tests/lib/Repository/Service/Mock/ContentTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ public function testConstructor(): void
'remove_archived_versions_on_publish' => true,
];

// @phpstan-ignore new.resultUnused (not using a service is intentional in this test)
new ContentService(
$repositoryMock,
$persistenceHandlerMock,
Expand Down
Loading