We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86bdeae commit a2d6c99Copy full SHA for a2d6c99
src/Collector/Profile.php
@@ -13,9 +13,9 @@
13
*/
14
final class Profile
15
{
16
- private string $request;
+ private ?string $request = null;
17
18
- private string $response;
+ private ?string $response = null;
19
20
private bool $failed = false;
21
@@ -32,7 +32,7 @@ public function getPlugin()
32
}
33
34
/**
35
- * @return string
+ * @return string|null
36
37
public function getRequest()
38
@@ -48,7 +48,7 @@ public function setRequest($request)
48
49
50
51
52
53
public function getResponse()
54
0 commit comments