Skip to content

Commit 3e6a96d

Browse files
committed
fix merge
1 parent dd5750f commit 3e6a96d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Bundle/WebProfilerBundle/Tests/DependencyInjection/WebProfilerExtensionTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ public function match(string $pathinfo): array
242242

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

260-
public function purge()
260+
public function purge(): void
261261
{
262262
}
263263
}

0 commit comments

Comments
 (0)