123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- namespace Symfony\Component\HttpKernel\Profiler;
- interface ProfilerStorageInterface
- {
-
- public function find(?string $ip, ?string $url, ?int $limit, ?string $method, ?int $start = null, ?int $end = null): array;
-
- public function read(string $token): ?Profile;
-
- public function write(Profile $profile): bool;
-
- public function purge();
- }
|