Skip to content

Commit

Permalink
Merge branch '6.4' into 7.1
Browse files Browse the repository at this point in the history
* 6.4:
  fix merge
  fix merge
  • Loading branch information
xabbuh committed Oct 1, 2024
2 parents f290abb + 646bf71 commit 49d95d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/DependencyInjection/WebProfilerExtensionTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ public function match(string $pathinfo): array

class NullProfilerStorage implements ProfilerStorageInterface
{
public function find(?string $ip, ?string $url, ?int $limit, ?string $method, ?int $start = null, ?int $end = null): array
public function find(?string $ip, ?string $url, ?int $limit, ?string $method, ?int $start = null, ?int $end = null, ?string $statusCode = null, ?\Closure $filter = null): array
{
return [];
}
Expand All @@ -257,7 +257,7 @@ public function write(Profile $profile): bool
return true;
}

public function purge()
public function purge(): void
{
}
}

0 comments on commit 49d95d2

Please sign in to comment.