Skip to content

Commit

Permalink
fix merge
Browse files Browse the repository at this point in the history
  • Loading branch information
xabbuh committed Oct 1, 2024
1 parent 3fc0938 commit 646bf71
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, string $statusCode = null, \Closure $filter = 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 646bf71

Please sign in to comment.