Skip to content

Commit 0f7d897

Browse files
committed
Fix some redundant @return phpdoc
1 parent 418e5d5 commit 0f7d897

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

Profiler/ProfilerStorageInterface.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,24 +32,18 @@ interface ProfilerStorageInterface
3232
* @param int|null $limit The maximum number of tokens to return
3333
* @param int|null $start The start date to search from
3434
* @param int|null $end The end date to search to
35-
*
36-
* @return array
3735
*/
3836
public function find(?string $ip, ?string $url, ?int $limit, ?string $method, int $start = null, int $end = null): array;
3937

4038
/**
4139
* Reads data associated with the given token.
4240
*
4341
* The method returns false if the token does not exist in the storage.
44-
*
45-
* @return Profile|null
4642
*/
4743
public function read(string $token): ?Profile;
4844

4945
/**
5046
* Saves a Profile.
51-
*
52-
* @return bool
5347
*/
5448
public function write(Profile $profile): bool;
5549

0 commit comments

Comments
 (0)