Skip to content

Commit 95f7fb6

Browse files
Revert more native return types
1 parent 13a1814 commit 95f7fb6

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

DataCollector/DataCollectorInterface.php

+6-2
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,15 @@ interface DataCollectorInterface extends ResetInterface
2424
{
2525
/**
2626
* Collects data for the given Request and Response.
27+
*
28+
* @return void
2729
*/
28-
public function collect(Request $request, Response $response, \Throwable $exception = null): void;
30+
public function collect(Request $request, Response $response, \Throwable $exception = null);
2931

3032
/**
3133
* Returns the name of the collector.
34+
*
35+
* @return string
3236
*/
33-
public function getName(): string;
37+
public function getName();
3438
}

DataCollector/LateDataCollectorInterface.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ interface LateDataCollectorInterface
2020
{
2121
/**
2222
* Collects data as late as possible.
23+
*
24+
* @return void
2325
*/
24-
public function lateCollect(): void;
26+
public function lateCollect();
2527
}

0 commit comments

Comments
 (0)